代码搜索:Normalized

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

代码结果 4,216
www.eeworm.com/read/184304/9111356

m exm107~1.m

%exm1071_1.m %在屏幕的右上方创建一个背景为"橘黄"色的"试验窗"。 bdw=0.01; %左右两侧边和底边的宽度 tpw=0.15; %顶边宽度不能太小 pos=[1/2+bdw,2/3+bdw,1/2-2*bdw,1/3-bdw-tpw]; % figure('Units','normalized','Position',pos,'Color',
www.eeworm.com/read/184196/9117924

m anaask.m

function [y,am]=anaask(N,Ncomp,f0); %ANAASK Amplitude Shift Keying (ASK) signal. % [Y,AM]=ANAASK(N,NCOMP,F0) returns a complex amplitude % modulated signal of normalized frequency F0, with a uniforml
www.eeworm.com/read/182900/9186643

m dsdemo4fig.m

function fig = dsdemo4fig() % Window layout for the dsdemo4() function. % This file has been hand-edited after using the "guide" command % to create the initial layout and *fig.m file. % Be wary of c
www.eeworm.com/read/182707/9194945

m fildis.m

function fildis() FI=figure('Menubar','none','numbertitle','off','name','Kalman Filter','deletefcn','figdel_callback'); BI=uicontrol(FI,'Style','Push','Unit','normalized','Position',[0.81,.73,
www.eeworm.com/read/182707/9194956

asv fildis.asv

function fildis() FI=figure('Menubar','none','numbertitle','off','name','Kalman Filter','deletefcn','figdel_callback'); %生成figue BI=uicontrol(FI,'Style','Push','Unit','normalized','P
www.eeworm.com/read/182501/9201127

m fildis.m

function fildis() FI=figure('Menubar','none','numbertitle','off','name','Kalman Filter','deletefcn','figdel_callback'); BI=uicontrol(FI,'Style','Push','Unit','normalized','Position',[0.81,.73,
www.eeworm.com/read/182501/9201132

asv fildis.asv

function fildis() FI=figure('Menubar','none','numbertitle','off','name','Kalman Filter','deletefcn','figdel_callback'); %生成figue BI=uicontrol(FI,'Style','Push','Unit','normalized','P
www.eeworm.com/read/181714/9240378

m splint2.m

function s = splint2(x,p,t) % Compute values of cubic spline with knots x and coefficients % p, see SPLINT1. % Version 11.12.2003. INCBOX if any((t < x(1)) | (t > x(end))) error('argumen
www.eeworm.com/read/377912/9257769

m guiplot.m

function guiplot(action) %HNDLGRAF Demonstrates Handle Graphics for line plots in MATLAB. % This window allows you to assemble a string % of MATLAB commands that results in a plot in
www.eeworm.com/read/180485/9305441

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