代码搜索:Compute
找到约 10,000 项符合「Compute」的源代码
代码结果 10,000
www.eeworm.com/read/130130/5963910
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/130130/5963920
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/492937/6414546
m compute_fft.m
function [f,mag]=compute_fft(time,data,action);
% CUMPUTE_FFT compute FFT for vector 'data'
% action: 'plot' , 'noplot'
%
% last modified 15.12.04
xfft = 2/length(data)*fft(data);
xfft(xff
www.eeworm.com/read/489452/6471444
m compute_equalizer.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Lab Assignment #1: frequency equalizer for a broadcast relay station %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/489040/6481876
m compute_laplacian.m
function lap = compute_laplacian(M,options)
% compute_laplacian - compute the laplacian of an image.
%
% y = compute_laplacian(M,options);
%
% Copyright (c) 2004 Gabriel Peyr
www.eeworm.com/read/489040/6481878
m compute_diff.m
function y = compute_diff(x,order,options)
% compute_diff - compute central derivative (of order 'order') of a vector.
%
% y = compute_diff(x,order,options);
%
% 'options' is a structure:
%
www.eeworm.com/read/489040/6481889
m compute_hessian.m
function H = compute_hessian(M,options)
% compute_hessian - compute the hessian
% tensorial field.
%
% H = compute_hessian(M);
%
% Copyright (c) 2004 Gabriel Peyr
www.eeworm.com/read/489040/6481893
m compute_grad.m
function grad = compute_grad(M,options)
% compute_grad - compute the gradient of an image using central differences
%
% grad = compute_grad(M,options);
%
% 'options' is a structure:
% - op
www.eeworm.com/read/485855/6548446
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/481627/6636608
v compute_metric.v
/******************************************************/
/* module compute_metric */
/******************************************************/
// --------------