代码搜索:Normalized
找到约 4,216 项符合「Normalized」的源代码
代码结果 4,216
www.eeworm.com/read/356183/10235334
m fig7_10a.m
fofr=0:0.001:1;
f1=4.*fofr;
f2=5.*fofr;
arg1=pi.*f1;
arg2=pi.*f2;
resp1=abs(sin(arg1));
%resp1=resp11.*resp11;
%resp22=(sin(arg2).*sin(arg2));
resp2=abs(sin(arg2));
resp=resp1+resp2;
max1=ma
www.eeworm.com/read/356183/10235336
m fig7_10c.m
fofr=0:0.001:1;
f1=4.*fofr;
f2=5.*fofr;
arg1=pi.*f1;
arg2=pi.*f2;
resp1=abs(sin(arg1));
%resp1=resp11.*resp11;
%resp22=(sin(arg2).*sin(arg2));
resp2=abs(sin(arg2));
resp=resp1+resp2;
max1=ma
www.eeworm.com/read/281192/10257732
m normalize.m
function [Normalized] = Normalize(InputMat)
%function [Normlized] = Normalize(InputMat)
% Normalize the columns of matrix InputMat
Norm2 = sqrt(diag(InputMat'*InputMat));
Normalized = InputMat./(o
www.eeworm.com/read/162729/10278922
m clust_normalize.m
function data=clust_normalize(data,method);
% method description
% 'var' Variance is normalized to one (linear operation).
% 'range' Values are normalized between [0,1] (linear
www.eeworm.com/read/162179/10328944
m clust_normalize.m
function data=clust_normalize(data,method);
% method description
% 'var' Variance is normalized to one (linear operation).
% 'range' Values are normalized between [0,1] (linear
www.eeworm.com/read/354741/10329401
m normalize.m
function [Normalized] = Normalize(InputMat)
%function [Normlized] = Normalize(InputMat)
% Normalize the columns of matrix InputMat
Norm2 = sqrt(diag(InputMat'*InputMat));
Normalized = InputMat./(o
www.eeworm.com/read/160887/10475947
m plot_proc.m
%plot_proc is used to change properties of a user selected curves
%
% plot_proc(nTask,arg1,arg2)
%where
% nTask -- curve manipulation code
% 1 display dialog box for preference
%
www.eeworm.com/read/424063/10499386
m invmulaw.m
function x=invmulaw(y,mu)
%INVMULAW The inverse of mu-law nonlinearity
%X=INVMULAW(Y,MU) Y=Normalized output of the mu-law nonlinearity
x=(((1+mu).^(abs(y))-1)./mu).*signum(y);
www.eeworm.com/read/160618/10514422
m exa010305.m
%---------------------------------------------------------------------------------------
% exa010305.m, for example 1.3.5
% 说明 幅度为三角波的幅度调制信号在长度变化前后,信号的时间中心、频率最小、时宽
% 和带宽的变化情况;
%
www.eeworm.com/read/160591/10516058
m untitled.m
clf reset
H=axes('unit','normalized','position',[0,0,1,1],'visible','off');
set(gcf,'currentaxes',H);
str='\fontname{楷书}函数exp(-at)与阶跃函数u(t)的卷积';
text(0.22,0.96,str,'fontsize',10);
h_fig=get(H,'pa