代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/323721/13325264
m resplot.m
% RESPLOT.M (RESult PLOTing)
%
% This function plots some results during computation.
%
% Syntax: resplot(Chrom,IndAll,ObjV,Best,gen)
%
% Input parameters:
% Chrom - Matrix contai
www.eeworm.com/read/323721/13325294
m resplot.m
% RESPLOT.M (RESult PLOTing)
%
% This function plots some of the results during computation.
%
% Syntax: resplot(Chrom,IndAll,ObjV,Best,gen)
%
% Input parameters:
% Chrom - Matrix
www.eeworm.com/read/238779/13326216
m holder.m
function h=holder(tfr,f,n1,n2,t,pl)
%HOLDER Estimate the Holder exponent through an affine TFR.
% H=HOLDER(TFR,F,N1,N2,T) estimates the Holder exponent of a
% function through an affine time-frequenc
www.eeworm.com/read/137203/13340262
m runge.m
m=101;
x=-5:10/(m-1):5;
t=zeros(1,36);l=-1.5:0.1:2;
y=1./(1+x.^2);z=0*x;plot(x,z,'r',x,y,'k:',t,l),gtext('y=1/(1+x^2)'),pause
n=3;
x0=-5:10/(n-1):5;
y0=1./(1+x0.^2);
y1=lagr1(x0,y0,x);hold on,p
www.eeworm.com/read/137200/13340510
m tttttttt.m
p1mean=mean(out.p(1,:)),
b1mean=mean(out.b(1,:)),
f1mean=mean(out.f(1,:)),
g1mean=mean(out.g(1,:)),
j1mean=mean(out.j(1,:)),
% p1var=var(out.p(1,:)),
% b1var=var(out.b(1,:)),
% f1var=var(out.f(
www.eeworm.com/read/137200/13340528
m yusuf.m
xp=[];
xf=[];
xb=[];
xj=[];
xg=[];
yp=[];
yf=[];
yb=[];
yj=[];
yg=[];
zp=yp./xp;
zf=yf./xf;
zb=yb./xb;
zj=yj./xj;
zg=yg./xg;
plot(zp,'g*'),hold on;plot(zb,'mo'),hold on;plot(zf,'rx'),ho
www.eeworm.com/read/323202/13347419
m ex0601.m
%画例6.1的程序。
f=sym('heaviside(t+3)-2*heaviside(t)')
ezplot(f,[-5,4]),
hold on,plot([0,0],[-1,1
www.eeworm.com/read/323202/13347447
m figure0607.m
%画图6.7的程序
t=-5:0.05:5
f=sign(t)
plot(t,f),axis([-5,5,-1.1,1.1])
www.eeworm.com/read/323189/13347657
m figure0516.m
t = 0:pi/20:2*pi;
[x,y] = meshgrid(t);
subplot(2,2,1)
plot(sin(t),cos(t))
axis equal
subplot(2,2,2)
z = sin(x)+cos(y);
plot(t,z)
axis([0 2*pi -2 2])
subplot(2,2,3)
z = sin(x).*cos(y);
plot
www.eeworm.com/read/323189/13347666
m figure0505.m
x=0:1/100:2*pi;
y1=sin(x);
y2=cos(x);
plot(x,y1,'r-',x,y2,'b:')
grid on;
xlable('弧度值')
ylable('函数值')
title('正弦曲线和余弦曲线')