代码搜索:Compute

找到约 10,000 项符合「Compute」的源代码

代码结果 10,000
www.eeworm.com/read/360651/10082922

m compute_codeword.m

function o=compute_codeword(position,s,jx) %实现计算码字滤波的框图功能 %输入---固定码本输出 %输出---码字矢量,得到c(n) c=zeros(1,40); for i=1:4 c(position(i))=s(i); end %c=c/2^15; o=c;
www.eeworm.com/read/358669/10182359

m compute_extrinsic.m

function [omckk,Tckk,Rckk,H,x,ex,JJ] = compute_extrinsic(x_kk,X_kk,fc,cc,kc,alpha_c,MaxIter,thresh_cond), %compute_extrinsic % %[omckk,Tckk,Rckk,H,x,ex] = compute_extrinsic(x_kk,X_kk,fc,cc,kc,alp
www.eeworm.com/read/358669/10182400

m compute_collineation.m

function [H,Hnorm,inv_Hnorm] = compute_collineation (a00, a10, a11, a01); % new formalism using homographies a00 = a00 / a00(3); a10 = a10 / a10(3); a11 = a11 / a11(3); a01 = a01 / a01(3);
www.eeworm.com/read/358669/10182426

m compute_homography.m

function [H,Hnorm,inv_Hnorm] = compute_homography(m,M); %compute_homography % %[H,Hnorm,inv_Hnorm] = compute_homography(m,M) % %Computes the planar homography between the point coordinates on t
www.eeworm.com/read/358669/10182435

m compute_epipole.m

function [epipole] = compute_epipole(xLp,R,T,fc_right,cc_right,kc_right,alpha_c_right,fc_left,cc_left,kc_left,alpha_c_left,D); if ~exist('D'), D = 400; end; uo = [ normalize_pixel(xLp,fc_l
www.eeworm.com/read/357932/10198248

m compute_out.m

%----------------------------------- %------- 双输入单输出模糊推理模块 --------------- %----------------------------------- % 输入真实值,输出推理结果 4*2 数组 function gl_out=compute_out(vx,vy) % vx 推理输入真实值1 % vy 推理输入真实
www.eeworm.com/read/357932/10198262

asv compute_out.asv

function outtest(vx,vy,fielda,fieldb) % 输入真实值,输出推理结果 4*2 数组 function gl_out=compute_out(vx,vy) gl_out1=grade(-5,5,3,vx); gl_out2=grade(-6,6,3,vy); ind_temp=zeros(4,2); ind_temp(1,:)=induce
www.eeworm.com/read/357168/10214408

m compute_time.m

function [y,z]=compute_time(timesave,maxlength) A1=timesave; C1=length(A1); A=timesave-maxlength; B=find(~A); C=length(B); A1(1,B)=0; if C1==C y=0; else y=sum(A1)/(C1-C); end z=(C1
www.eeworm.com/read/356592/10224213

m sc_compute.m

function [BH,mean_dist]=sc_compute(Bsamp,Tsamp,mean_dist,nbins_theta,nbins_r,r_inner,r_outer,out_vec); % [BH,mean_dist]=sc_compute(Bsamp,Tsamp,mean_dist,nbins_theta,nbins_r,r_inner,r_outer,out_vec);
www.eeworm.com/read/163022/10252562

m compute_coherence.m

%------------------------------------------------------------------------ %compute_coherence %Computes the coherence image. %Usage: %[cimg] = compute_coherence(oimg) %oimg - orientation image %