代码搜索:Normalized

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

代码结果 4,216
www.eeworm.com/read/439401/7710342

m c7_flicker.m

% File: c7_flicker.m % Software given here is to accompany the textbook: W.H. Tranter, % K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of % Communication Systems Simulation with Wir
www.eeworm.com/read/439401/7710420

m dqplot.m

% File: dqplot.m % Software given here is to accompany the textbook: W.H. Tranter, % K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of % Communication Systems Simulation with Wireles
www.eeworm.com/read/435547/7790679

m single_canceler.m

function [resp] = single_canceler (fofr1) eps = 0.00001; fofr = 0:0.01:fofr1; arg1 = pi .* fofr; resp = 4.0 .*((sin(arg1)).^2); max1 = max(resp); resp = resp ./ max1; subplot(2,1,1) plot(fofr,
www.eeworm.com/read/399158/7885631

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/398648/7932333

m mmn2px.m

function y=mmn2px(x,Hf) %MMN2PX Normalized to Pixel Coordinate Transformation. % MMN2PX(X) converts the position vector X from % normalized coordinates to pixel coordinates w.r.t. % the computer scree
www.eeworm.com/read/197918/7962100

m box.m

% box figure(2); clf; set (gcf,'Units','normalized','Position',[0.45 0.1 0.45 0.4],'Name','Box Input Data Window','NumberTitle','off','Units','normalized'); Frame1=uicontrol(gcf,... 'Style','frame',
www.eeworm.com/read/297942/7984869

m fig102.m

function [emod] = circ_aperture (lambda, d) eps = 0.000001; var = 2.0 * pi * (-2:0.001:2); pattern = 2. * besselj(1,var) ./ var; maxval = max(abs(pattern)); pattern = pattern ./ maxval; mod = 20
www.eeworm.com/read/297942/7985092

m single_canceler.m

function [resp] = single_canceler (fofr1) eps = 0.00001; fofr = 0:0.01:fofr1; arg1 = pi .* fofr; resp = 4.0 .*((sin(arg1)).^2); max1 = max(resp); resp = resp ./ max1; subplot(2,1,1) plot(fofr,
www.eeworm.com/read/297942/7985095

m fig89c.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/297942/7985096

m fig89a.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