代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/406784/11435789
m lpc.m
close all
clear
clc
[x,fs]=wavread('speech.wav');%读入数据
% 预加重滤波器
xx=double(x);
y=filter([1 -0.9495],1,xx);
N=160;
y1=y(1:N);
w1=hamming(N);
y2=(y1.*w1)';%加窗 取一帧数据
p=30;%预测阶数
%首先求自相关函数
r=ze
www.eeworm.com/read/406495/11440998
m v2_006.m
% v2_006.m
%
% This is a script file to solve a mdof system,
% given the mass, damping and stiffness terms
% in dimensionless units, for the time response of the
% system using numerical int
www.eeworm.com/read/406495/11440999
m v2_004.m
% v2_004.m
%
% This is a script file to solve a mdof system,
% given the mass, damping and stiffness terms
% in dimensionless units, for the time response of the
% system.
%
%
www.eeworm.com/read/406495/11441005
m v2_005.m
% v2_005.m
%
% This is a script file to solve a mdof system,
% given the mass, damping and stiffness terms
% in dimensionless units, for the time response of the
% system using numerical int
www.eeworm.com/read/406416/11442825
m wiener3.m
t=0:0.01:5;
s=sin(2*pi*5*t);
n=sin(2*pi*10*t);
x=s+n;
d=s;
y=zeros(size(x));
N=10;
for k=N:length(t)
R=MyCorrelation(x(1:k),x(1:k),N);
p=MyCorrelation(x(1:k),d(1:k),N);
w=toepl
www.eeworm.com/read/406416/11442828
m wiener1.m
t=0:0.01:5;
s=sin(2*pi*5*t);
n=sin(2*pi*10*t);
%n=randn(size(t));
x=s+n;
d=s;
%s=[s(1:50),cos(2*pi*5*t(1:51))];
%s=[s(1:50),-s(51:end)]; % 这表明这个滤波器不具有自适应能力
N=10;
% 在程序文件wiener2.m中已经得知,如果相关矩
www.eeworm.com/read/405427/11462680
m exa080901_dct1.m
%--------------------------------------------------------------------------
% exa080901_dct1.m, for example 8.9.1
% to test dct.m;
% 调用该程序的主程序是exa080901_dct1_test.m,
%----------------------------
www.eeworm.com/read/405427/11462683
m exa080901_dct1_test.m
%---------------------------------------------------------------------------
% exa080901_dct1_test, for exa8.9.1
% to call function exa080901_dct1;
%------------------------------------------------
www.eeworm.com/read/405427/11462686
m exa070901_fir1.m
%-------------------------------------------------------------------------------
% exa070901_fir1.m , for example 7.9.1 and 7.1.1
% to test fir1.m,
%------------------------------------------------
www.eeworm.com/read/405427/11462687
m exa090300_2.m
%-----------------------------------------------------------------------------
% exa090300_2.m, for fig. 9.3.2,
%-----------------------------------------------------------------------------
clea