代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/489042/6481907
m bigtwolay_nn1.m
%两层大型神经网络
clc;clear;n=60;
x=ones(n,n)/4;
A=imread('C:\Program Files\MATLAB71\work\OO1.bmp');
W1=double(A);W2=double(A);
for i=1:2000
for k=1:n
u=x(k,:)*W1(:,:);
y(k,:)=mod(
www.eeworm.com/read/489074/6482475
m c_117.m
%混沌迭代序列
clear;
N=1000;
x=0.3;mu=3.2;
for i=1:N;
x1=mu*x*(1-x);
x=x1;
plot(i,x1,'.');
hold on;
end
www.eeworm.com/read/489074/6482476
m henon.m
%x(n+1)=1-a*x(n)^2;y(n+1)=b*x(n)
N=1000;
x=0.3;y=0.5;
a=1.2;b=0.3;
for i=1:N
x1=1-a*x^2+y;
y1=b*x;
plot(x1,y1);
hold on;
x=x1;
y=y1;
end
www.eeworm.com/read/488802/6486276
rs
把数据输出到workplace里,用plot(x,V)就好了~
例子:
r2(n,x,'Hurst',20)
plot(x,V)
www.eeworm.com/read/488803/6486343
m haode.m
p=20/2;
TW=50;
s=dchirp(TW,p);
figure(1)
T=25e-6;
N=p*TW;
t=[-T/2:T/N:T/2]; t(end)=[];
plot(t*1e6,real(s))
xlabel('t,(\mus)'),ylabel('The real of s(n)')
title('The Chirp signal')
figure(2)
www.eeworm.com/read/488803/6486344
m untitled1.m
p=20/2;
TW=50;
s=dchirp(TW,p);
figure(1)
T=25e-6;
N=p*TW;
t=[-T/2:T/N:T/2]; t(end)=[];
plot(t*1e6,real(s))
xlabel('t,(\mus)'),ylabel('The real of s(n)')
title('The Chirp signal')
figure(2)
www.eeworm.com/read/488803/6486348
m untitled2.m
p=10/2;
TW=50;
s=dchirp(TW,p);
figure(1)
T=10e-6;
N=p*TW;
t=[-T/2:T/N:T/2]; t(end)=[];
plot(t*1e6,real(s))
xlabel('t,(\mus)'),ylabel('The real of s(n)')
title('The Chirp signal')
figure(2)
www.eeworm.com/read/488463/6487331
m am.m
% am.m
% Matlab demonstration script for DSB-AM modulation. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise.
echo on
t0=.15; %