代码搜索:Normalized

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

代码结果 4,216
www.eeworm.com/read/147096/12583752

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);
www.eeworm.com/read/300728/13895952

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/135779/13900642

m example36_figure.m

%RBF3_figure:to look the figure of input&output %============== %============== [name,path]=uigetfile('*.bmp'); pathname=strcat(path,name); I=imread(pathname); IZoom=imresize(I,[96,96],'bi
www.eeworm.com/read/135754/13902693

m example36_figure.m

%RBF3_figure:to look the figure of input&output %============== %============== [name,path]=uigetfile('*.bmp'); pathname=strcat(path,name); I=imread(pathname); IZoom=imresize(I,[96,96],'bi
www.eeworm.com/read/300562/13905666

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);
www.eeworm.com/read/237896/13921019

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/237896/13921024

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/237896/13921030

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/237896/13921038

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/300086/13936614

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