代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/477233/6740331
m exa080901_dct1.m
%--------------------------------------------------------------------------
% exa080901_dct1.m, for example 8.9.1
% to test dct.m;
% 调用该程序的主程序是exa080901_dct1_test.m,
%----------------------------
www.eeworm.com/read/477233/6740341
m exa090300_2.m
%-----------------------------------------------------------------------------
% exa090300_2.m, for fig. 9.3.2,
%-----------------------------------------------------------------------------
clea
www.eeworm.com/read/477233/6740344
m 求如下三个系统的幅频响应.m
%-------------------------------------------------------------------------
% exa020502.m, for example 2.5.2 and fig 2.5.6,
%------------------------------------------------------------------------
www.eeworm.com/read/477233/6740345
m 分别求两个滤波器的频率响应.m
%-------------------------------------------------------------------------------
% exa070901_fir1.m , for example 7.9.1 and 7.1.1
% to test fir1.m,
%------------------------------------------------
www.eeworm.com/read/477233/6740356
m explain how to unwrap the phase.m
%----------------------------------------------------------------------------
% exa030202, for example 3.2.2 and fig 3.2.4
% to explain how to unwrap the phase
%------------------------------------
www.eeworm.com/read/477233/6740390
m to explain how to do dtft.m
%----------------------------------------------------------------------------
% exa030203, for example 3.2.5
% to explain how to do DTFT
%-----------------------------------------------------------
www.eeworm.com/read/477233/6740420
m exa090501.m
%----------------------------------------------------------------------------
% exa090501.m, for example 9.5.1,
%----------------------------------------------------------------------------
clear;
www.eeworm.com/read/477233/6740421
m 不使用“fftfilt文件,自己编程实现一个长序列和一个短序列的卷积。.m
%----------------------------------------------------------------------------
% exa031101_conv.m, for example 3.11.1
%
% 不使用“fftfilt"文件,自己编程实现一个长序列和一个短序列的卷积。
%------------------------------------
www.eeworm.com/read/477233/6740424
m 对一维信号作dct.m
%---------------------------------------------------------------------------
% exa080901_dct1_test, for exa8.9.1
% to call function exa080901_dct1;
%------------------------------------------------
www.eeworm.com/read/477078/6745044
m grnn.m
%绘制指数函数曲线
p=-1:0.05:1;
t=exp(-p);
plot(p,t);
grid;
title('exponential function');
xlabel('x');
ylabel('y');
figure;
%建立并训练网络
for i=1:5
net=newgrnn(p,t,i/10);
y(i,:)=sim(net,p);
en