代码搜索:Normalized
找到约 4,216 项符合「Normalized」的源代码
代码结果 4,216
www.eeworm.com/read/173932/9629520
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/173932/9629526
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/173932/9629529
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/369171/9660210
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/173140/9670811
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/367875/9724748
m vis_show_gui_tool.m
function r=vis_show_gui_tool(h,action,varargin)
%VIS_SHOW_GUI_TOOL is a subfunction of SOM_SHOW_GUI.
%
% r = vis_show_gui_tool(handle, action, varargin)
%
% Input arguments:
% handle (struct
www.eeworm.com/read/367875/9724889
m vis_show_gui_comp.m
function vis_show_gui_comp(h, indx, action,varargin)
%VIS_SHOW_GUI_COMP is a subfunction of SOM_SHOW_GUI.
%
% vis_show_gui_comp(handle, indx, action, varargin)
%
% Input arguments:
% handle
www.eeworm.com/read/367875/9724927
m som_show_gui.m
function fig = som_show_gui(input,varargin)
%SOM_SHOW_GUI A GUI for using SOM_SHOW and associated functions.
%
% h = som_show_gui(sM);
%
% Input and output arguments:
% sM (struct) a map str
www.eeworm.com/read/367830/9727908
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/367441/9748313
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