代码搜索:Normalized
找到约 4,216 项符合「Normalized」的源代码
代码结果 4,216
www.eeworm.com/read/207746/15263126
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/472096/6878677
m laolugui.m
clear all;
clc
clf reset
global u z pn z2 vpop;
H=axes( 'unit' , 'normalized' , 'position' ,[0,0,1,1], 'visible' , 'off' );
set(gcf, 'currentaxes' ,H);
h_fig=get(H, 'parent' );
%////////
www.eeworm.com/read/395688/8160195
m exa010305.m
%---------------------------------------------------------------------------------------
% exa010305.m, for example 1.3.5
% 说明 幅度为三角波的幅度调制信号在长度变化前后,信号的时间中心、频率最小、时宽
% 和带宽的变化情况;
%
www.eeworm.com/read/194957/8182338
m 例7-15.m
>> clf reset
>> H=axes('unit','normalized','position',[0,0,1,1],'visible','off');
>> set(gcf,'currentaxes',H);
>> text(0.12,0.93,'\fontname{楷书}归一化二阶系统的阶跃响应曲线','fontsize',13);
>> H_fig=get(H,'paren
www.eeworm.com/read/294611/8216379
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/294611/8216630
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/294611/8216676
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/293761/8275672
m plotenvelop.m
%%%%%%%%%%%%% Plot Envelop %%%%%%%%%%%%%%%
function Plot_Envelop=PlotEnvelop(envelop,t) %%%%
Envelop=envelop;
Time=t;
P2=plot(Time,10*log10(Envelop));
Title=title('Envelop Generate
www.eeworm.com/read/174423/9588010
m exa010305.m
%---------------------------------------------------------------------------------------
% exa010305.m, for example 1.3.5
% 说明 幅度为三角波的幅度调制信号在长度变化前后,信号的时间中心、频率最小、时宽
% 和带宽的变化情况;
%
www.eeworm.com/read/173932/9629517
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,