代码搜索:Normalized

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

代码结果 4,216
www.eeworm.com/read/430888/8719861

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/386625/8734487

m demo1.m

%DEMO1 MGLab Smoother Demo % % This demo displays the smoothing properties of % some common smoothers by performing a few % iterations for the model problem with a random %
www.eeworm.com/read/430031/8771794

m beampatt.m

%BEAMPATT Interactive demo : array beampattern % Author: K. Bell % 9/3/98 % Last Updated 8/30/00 function beampatt(action,in1,in2); % possible actions: % 'start' %
www.eeworm.com/read/286180/8784142

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/429877/8784328

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/429877/8784452

m fig7_10b.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/429877/8784591

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/429877/8784599

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/429455/8807816

m e6422exer1.m

% % **** Some MATLAB routines for E6422 - Adaptive SP **** % % clear all; % ----- Example 1: 16 point FIR filter (e.g. in Figure 2.1(a)) --------- % firco = [-0.0031 0.0014 0.0134 0.
www.eeworm.com/read/429449/8808043

m psk.m

% ---------------------------------------- % +++++ Simulation of PSK Demodulator +++++++ % For simplicity only the detector (after sampling) is simulated. % -------------