代码搜索:Normalized

找到约 4,216 项符合「Normalized」的源代码

代码结果 4,216
www.eeworm.com/read/103618/15727748

m exm1152_1.m

function exm1152_1( ) clf reset % set(gcf,'unit','normalized','position',[0.1,0.4,0.85,0.35]);%设置图形窗大小 set(gcf,'defaultuicontrolunits','normalized'); set(gcf,'defaultuicontr
www.eeworm.com/read/103618/15727924

m exm1151_1.m

function exm1151_1( ) global hedit hpop hlist clf reset,shg % set(gcf,'unit','normalized','position',[0.1,0.4,0.85,0.35]);%设置图形窗大小 set(gcf,'defaultuicontrolunits','normalize
www.eeworm.com/read/101204/15841811

m mmpage.m

function mmpage(arg) %MMPAGE GUI to Set Figure Paper Position. % MMPAGE allows the user to set the current figure % position on the printed page using a gui. % MMPAGE(Hf) places the figure having hand
www.eeworm.com/read/391063/8424321

m spin_new.m

function W = spin_new(X) % W = spin_new(X) % Method for spinglass example supplied with SA Tools. % See http://www.frostconcepts.com/software for information on SA Tools. % % W = spin_new(X) ;
www.eeworm.com/read/191214/8433130

m example1_2.m

H=figure('Color',[0,1,1],'Position',[0,0,400,400],'Name',... '关于控制框设计的程序','NumberTitle','off', 'MenuBar','none'); uicontrol(H,'Style','text','Position',[0.05,0.74,0.9,0.1],... 'Units','no
www.eeworm.com/read/190158/8446939

c rctoac.c

/************************************************************************** * * NAME * rctoac * * FUNCTION * * convert reflection coefficients to autocorrelation coefficients * * SYNOPSIS * * subrouti
www.eeworm.com/read/290607/8472302

m trnorm.m

%TRNORM Normalize a homogeneous transformation. % % TN = TRNORM(T) % % Returns a normalized homogeneous tranformation matrix in which the rotation % submatrix is a proper orthogonal matrix. % The O a
www.eeworm.com/read/289768/8528496

m sgolaydemo.m

function sgolaydemo(action); %SGOLAYDEMO Demonstrates Savitzky-Golay filtering. % This GUI demonstrates the smoothing obtained % with Savitzky-Golay filters on noisy ECG signals. %
www.eeworm.com/read/187864/8595126

m spin_new.m

function W = spin_new(X) % W = spin_new(X) % Method for spinglass example supplied with SA Tools. % See http://www.frostconcepts.com/software for information on SA Tools. % % W = spin_new(X) ;
www.eeworm.com/read/287843/8665313

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);