代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/478687/6713134
m lmsychengxu.m
%lms算法源程序
clear all
close all
%channel system order
sysorder = 5 ;
% Number of system points
N=2000;
inp = randn(N,1);
n = randn(N,1);
[b,a] = butter(2,0.25);
Gz = tf(b,a,-1);
%This functio
www.eeworm.com/read/478203/6721892
m tito_speech.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% TITO_Speech.m
% This program gives an example of the mixed speech signal example.
% Two source
www.eeworm.com/read/477921/6726028
m homew5.m
b=[1];
a=[1,-0.5,-0.25];
n=0:19;
x=0.8.^n;
yint=[1,2];
xic=filtic(b,a,yint);
y=filter(b,a,x,xic);
plot(n,y,'*g')
www.eeworm.com/read/477921/6726085
m m_exam11.m
% example 11
x=linspace(0,2*pi,30);
y=sin(x);
z=cos(x);
plot(x,y);
hold on
plot (x,z,'m')
hold off
xlabel('Independent variable x');
ylabel('Independent variable y and z');
title('sine and c
www.eeworm.com/read/477921/6726115
m example1_14.m
%-----------------------------------------------------------------
% example1_14
% to test xcorr.m
% 求两个序列的互相关函数,或一个序列的自相关函数;
%-----------------------------------------------------------------
cl
www.eeworm.com/read/477921/6726188
asv example1_14.asv
%-----------------------------------------------------------------
% example1_14
% to test xcorr.m
% 求两个序列的互相关函数,或一个序列的自相关函数;
%-----------------------------------------------------------------
cl
www.eeworm.com/read/477921/6726193
asv m_exam12.asv
% example 12
x=linspace(0,2*pi,30);
y=sin(x);
z=cos(x);
a=2*sin(x).*cos(x);
b=sin(x)./(cons(x)+eps);
subplot(2,2,1)%选取4个子图中的左上
plot(x,y);axis([0 2*pi -1 1]),title('sin(x)');
subplot(2,2,2)%选取4
www.eeworm.com/read/477455/6736053
m xlinpred.m
% LinPred.m
% Linear prediction.
% 用NEWLIND设()计一个线性网络,用SIM()对此线性网络进行仿真。
% 网络利用过去五个信号值可以对下一个信号进行预测。
%
% Author: HUANG Huajiang
% Copyright 2003 UNILAB Research Center,
% East China U