代码搜索:Normalized

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

代码结果 4,216
www.eeworm.com/read/166190/10029922

m entertf1.m

getmodel3=figure('color',[1,0,0],'position',[0.2*winw,0.3*winh,0.6*winw,0.4*winh],... 'name','反馈系统之前向通道传递函数及反馈回路传递函数输入窗','numbertitle','off','menubar','none',... 'resize','off','clipp
www.eeworm.com/read/166190/10029929

m enterss.m

getmodel1=figure('color',[1,1,1],'position',[0.2*winw,0.3*winh,0.6*winw,0.4*winh],... 'name','状态空间输入窗','numbertitle','off','menubar','none',... 'resize','off','clipping','off'); colo
www.eeworm.com/read/166190/10029954

m dentertf2z.m

getmodel3z=figure('color',[1,1,1],'position',[0.15*winw,0.3*winh,0.7*winw,0.6*winh],... 'name','连续系统传递函数的离散化','numbertitle','off','menubar','none',... 'resize','off','clipping','off');
www.eeworm.com/read/166190/10029963

m dready.m

%********************** %构造前向通道传递函数G(s) syms s a b c f t T z w winready=figure('color',[1,1,1],'position',[0.15*winw,0.15*winh,0.7*winw,0.7*winh],... 'name','函数F(t)的Z变换和LAPLACE变换','numberti
www.eeworm.com/read/361798/10035446

asv samples.asv

close all; % function SAMPLES % Saves the matrices RHO and THETA in GDATA.MAT figure('numbertitle','off', ... 'name','Location of Sample Points in ISAR') rect = [.1, .3, .64, .6]; axes('posi
www.eeworm.com/read/361798/10035453

m samples.m

close all; % function SAMPLES % Saves the matrices RHO and THETA in GDATA.MAT figure('numbertitle','off', ... 'name','Location of Sample Points in ISAR') rect = [.1, .3, .64, .6]; axes('posi
www.eeworm.com/read/165851/10049041

m program_03_04.m

% Program 3_4 % Numerical Computation of DTFT Using DFT % % Generate the length-16 sinusoidal sequence colordef black; k = 0:15; x = cos(2*pi*k*3/16); % Compute its 512-point DFT X = fft(x);
www.eeworm.com/read/165851/10049049

m program_07_2.m

% Program 7_2 % Type 1 Chebyshev IIR Highpass Filter Design % colordef black; Wp = input('Normalized passband edge = '); Ws = input('Normalized stopband edge = '); Rp = input('Passband ripple
www.eeworm.com/read/165851/10049144

m program_05_1.m

% Program 5_1 % 4-th Order Analog Butterworth Lowpass Filter Design % colordef black; format long % Determine zeros and poles [z,p,k] = buttap(4); disp('Poles are at');disp(p); % Determine tra
www.eeworm.com/read/165851/10049167

m program_07_1.m

% Program 7_1 % Elliptic IIR Lowpass Filter Design % colordef black Wp = input('Normalized passband edge = '); Ws = input('Normalized stopband edge = '); Rp = input('Passband ripple in dB = ')