代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/305207/13776957
m rls_adaptivefilter.m
clear;
N=500;
A=randn(1,N);
x=zeros(1,N);
y=zeros(1,N);
e=zeros(1,N);
x(1)=A(1);
x(2)=A(2)+1.6*A(1);
for i=3:N
x(i)=A(i)+1.6*x(i-1)-0.8*x(i-2); %求出输入x(n)
end
d=x;
www.eeworm.com/read/305207/13776958
m lsl_lms_mb.m
clear;
N=200;
order=2;
M=order+1;
t=1; %t=δ
%n=1时刻的初始化
A=randn(1,N); %噪声
x=zeros(1,N); %输入
www.eeworm.com/read/305206/13776959
m lms_adaptivefilter.m
clear;
cla;
N=500;
A=randn(1,N); %初始化
x=zeros(1,N);
y=zeros(1,N);
e=zeros(1,N);
%求出输入x(n)
x(1)=A(1);
x(2)=A(2)+1.6*A(1);
for i=3:N
x(i)=A(i)+1.6*x(i-1)-0.8*x(i
www.eeworm.com/read/305206/13776960
m lsl_adaptivefilter.m
clear;
cla;
N=200;
order=2;
M=order+1;
t=1; %t=δ
%n=1时刻的初始化
A=randn(1,N); %噪声
x=zeros(1,N);
www.eeworm.com/read/305206/13776961
m lsl_lms_cj.m
clear;
N=200;
order=2;
M=order+1;
t=1; %t=δ
%n=1时刻的初始化
A=randn(1,N); %噪声
x=zeros(1,N); %输入
www.eeworm.com/read/304954/13782451
m subspace_method_for_blind_channel_estimation.m
% subspace method for blind channel estimation
%
% Copyright: Xiaohua(Edward) Li, Assistant Professor
% Department of Electrical and Computer Engineering
% State University o
www.eeworm.com/read/304909/13783537
m plotcorana.m
function [z, a] = coranaEval(per)
i=0;
a=-0.9:per:0.9;
sz=size(a,2);
z=zeros(sz,sz);
for x=a
i=i+1; j=0;
for y=a
j=j+1;
z(i,j)=coranaFeval([x y]);
end
end
%Done!
%First le
www.eeworm.com/read/304909/13783551
m orderbasedexample.m
echo on
% This script shows how to use the ga using an order-based representation.
% You should see the demos for
% more information as well. gademo1, gademo2, gademo3
global distMatrix
% Settin
www.eeworm.com/read/304875/13784548
m example6_1.m
%首先装载一原始信号
load nearbrk;
s=nearbrk;
%===========================
%画出该信号的波形图
subplot(4,2,1);
plot(s);
Ylabel('s');
title('原始信号s和信号的近似a、细节d');
%===========================
%用小波
www.eeworm.com/read/304826/13785984
txt 08-06.txt
%例8-6 给MATLAB 7的图形添加标题。
>> x = 0:.1:2;
>>y1=sin(x);
>>y2 = sin(x-0.25);
>>y3 = sin(x-0.5);
>> plot(x,y1,'-.b', x,y2,'--r*', x,y3,'-.gh')
>> title('There three lines')
>>