代码搜索:Normalized
找到约 4,216 项符合「Normalized」的源代码
代码结果 4,216
www.eeworm.com/read/159954/10584335
m input_n.m
%输入非线性环节参数
col0=[0.7 0.7 0.7]; %浅灰色,窗体背景色
col1=[0.8 0.8 0.8]; %深灰色,输入框无效时的颜色
%创建输入非线性环节参数窗体
nawin=figure('color',col0,'position',[100 200 400 200],...
'name','输入非线性环节参数','menubar',
www.eeworm.com/read/159954/10584348
m rloc1.m
function rloc1(N,D);
%figure('Position',[196 78 437 431]);
axes('Position',[.15 .2 .7 .7]);
rlocus(N,D);
grid on;
RlocFind_button=uicontrol('Style','Pushbutton','Position',[.2 .03 .2 0.07],...
www.eeworm.com/read/159954/10584415
m rloc2.m
function rloc2(N,D);
figure('Position',[196 78 437 431]);
axes('Position',[.15 .2 .7 .7]);
rlocus(N,D);
grid on;
RlocFind_button=uicontrol('Style','Pushbutton','Position',[.2 .03 .2 0.07],...
www.eeworm.com/read/277960/10590573
m exa4_21.m
% exa4-21_lpc.m , for example 4-21
% Design lpc DF
clear all;
randn('state',0);
noise = randn(50000,1); % Normalized white Gaussian noise
x = filter(1,[1 1/2 1/3 1/4],noise);
x = x(45904:5000
www.eeworm.com/read/159596/10637593
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/421949/10675956
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/349909/10784753
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/349725/10801994
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/420161/10812809
m jpeg_klt.m
function jpeg_klt(I,z)
% I=imread('football.jpg');%读入原始图像,该图片在安装matlab的目录中找,原图为jpeg图象
z=fix(z);
t(1:z)=1;
t(z+1:64)=0;
mask=jpeg_Dzz8(t);
I2(:,:,1)=klt(I(:,:,1),mask);
I2(:,:,2)=klt(I(:,:,2),ma