代码搜索:Matlab;trainning
找到约 10,000 项符合「Matlab;trainning」的源代码
代码结果 10,000
www.eeworm.com/read/210588/15195489
readme
Introduction
---------------------------------------
The ANSI C Time-Frequency toolbox is a package aimed at computing
time-frequency representations. One the one hand, it is an extension
of the Tim
www.eeworm.com/read/210157/15205796
m ip_05_073.m
% MATLAB script for Illustrated Problem 5.7.3
echo on
n0=.5*randn(100,1);
n1=.5*randn(100,1);
n2=.5*randn(100,1);
n3=.5*randn(100,1);
x1=1.+n0;
y1=n1;
x2=n2;
y2=1.+n3;
plot(x1,y1,'o',x2,y2,'
www.eeworm.com/read/210157/15205807
m ip_05_071.m
% MATLAB script for Illustrated Problem 5.7.1
echo on
n0=.1*randn(100,1);
n1=.1*randn(100,1);
n2=.1*randn(100,1);
n3=.1*randn(100,1);
x1=1.+n0;
y1=n1;
x2=n2;
y2=1.+n3;
plot(x1,y1,'o',x2,y2,'
www.eeworm.com/read/210157/15205811
m ip_05_072.m
% MATLAB script for Illustrated Problem 5.7.2
echo on
n0=.3*randn(100,1);
n1=.3*randn(100,1);
n2=.3*randn(100,1);
n3=.3*randn(100,1);
x1=1.+n0;
y1=n1;
x2=n2;
y2=1.+n3;
plot(x1,y1,'o',x2,y2,'
www.eeworm.com/read/210154/15205893
m ip_02_05.m
% MATLAB script for Illustrative Problem 5, Chapter 2.
echo on
% first part
Sx1=[ones(1,32)];
Rx1=ifft(Sx1,32);
% second part
Sx2=[ones(1,16),zeros(1,224),ones(1,16)];
Rx2=ifft(Sx2,256);
% pl