代码搜索:Normalized
找到约 4,216 项符合「Normalized」的源代码
代码结果 4,216
www.eeworm.com/read/321385/13407761
m fig3_8_v1.m
clear all
bw = 10.0;
f0 = 10.;
tau = 30.0e-3;
mu = bw / tau;
n=0;
fs = 2.5*bw;
for t = -1.25:.1/fs:1.25
n = n+1;
y(n) = exp(i * .5 * mu * t^2);
end
yfft= fftshift(fft(y,1024));
freq=
www.eeworm.com/read/321385/13407885
m fig1_23.m
% Use this program to reproduce Fig. 1.23
clear all
close all
x = linspace(-2*pi,2*pi, 200);
y = sinc(x);
y = y ./ (max(y));
figure (1)
plot(x, 20*log10(abs(y)));
grid
axis tight
xlabel('Ang
www.eeworm.com/read/321295/13409412
m norma.m
% Function normalizes matrix over [0,1]
function [Dn] = norma(D);
% Dn -> normalized vector over [0,1]
[np,ni] = size(D);
if ni == 1,
Dn = (D - min(D))./(max(D)-min(D));
else,
vmaxD = ma
www.eeworm.com/read/320711/13419709
m norma.m
% Function normalizes matrix over [0,1]
function [Dn] = norma(D);
% Dn -> normalized vector over [0,1]
[np,ni] = size(D);
if ni == 1,
Dn = (D - min(D))./(max(D)-min(D));
else,
vmaxD = ma
www.eeworm.com/read/320558/13424136
m mmpage.m
function mmpage(arg)
%MMPAGE GUI to Set Figure Paper Position.
% MMPAGE allows the user to set the current figure
% position on the printed page using a gui.
% MMPAGE(Hf) places the figure having hand
www.eeworm.com/read/319970/13438229
m anaask.m
function [y,am]=anaask(N,Ncomp,f0);
%ANAASK Amplitude Shift Keying (ASK) signal.
% [Y,AM]=ANAASK(N,NCOMP,F0) returns a complex amplitude
% modulated signal of normalized frequency F0, with a uniforml
www.eeworm.com/read/319871/13441047
m exm1071_1.m
%exm1071_1.m
%在屏幕的右上方创建一个背景为"橘黄"色的"试验窗"。
bdw=0.01; %左右两侧边和底边的宽度
tpw=0.15; %顶边宽度不能太小
pos=[1/2+bdw,2/3+bdw,1/2-2*bdw,1/3-bdw-tpw]; %
figure('Units','normalized','Position',pos,'Color',
www.eeworm.com/read/319871/13441074
m exm1152_1.m
function exm1152_1( )
clf reset %
set(gcf,'unit','normalized','position',[0.1,0.4,0.85,0.35]);%设置图形窗大小
set(gcf,'defaultuicontrolunits','normalized');
set(gcf,'defaultuicontr
www.eeworm.com/read/319871/13441239
m exm1151_1.m
function exm1151_1( )
global hedit hpop hlist
clf reset,shg %
set(gcf,'unit','normalized','position',[0.1,0.4,0.85,0.35]);%设置图形窗大小
set(gcf,'defaultuicontrolunits','normalize
www.eeworm.com/read/319604/13448337
m norma.m
% Function normalizes matrix over [0,1]
function [Dn] = norma(D);
% Dn -> normalized vector over [0,1]
[np,ni] = size(D);
if ni == 1,
Dn = (D - min(D))./(max(D)-min(D));
else,
vmaxD = ma