代码搜索:plot

找到约 10,000 项符合「plot」的源代码

代码结果 10,000
www.eeworm.com/read/145494/12718113

m ex4_15.m

Z=[]; K=10; P=[-1;-2;-3;-4]; G=zpk(Z,P,K); G1=tf(G); [R,PP,X]=residue(G1.num{1},[G1.den{1},0]) [y,t]=step(G); for i=1:5, y=[y, R(i)*exp(PP(i)*t)]; end plot(t,y) plot(t,y(:,1),'-',t,sum(y(:,
www.eeworm.com/read/145494/12718154

m ex5_11.m

G=tf(1.5,[1,2,3]); t=0:0.1:2*pi; u=sin(t); y=lsim(G,u,t); plot(t,u,t,y) figure u=sin(2*t); y=lsim(G,u,t); plot(t,u,t,y)
www.eeworm.com/read/145494/12718213

m ex4_21.m

[t,x]= ode45('vdpol_eq',[0,20],[3;2]); plot(t,x); figure, plot(x(:,1),x(:,2))
www.eeworm.com/read/145494/12718296

m ex4_8.m

G=tf([1,7,24,24],[1,10,35,50,24]); t=0:.1:10; y=step(G,t); plot(t,y) Y=dcgain(G)
www.eeworm.com/read/145494/12718340

m ex4_17.m

A=[-21,19,-20; 19,-21,20; 40,-40,-40]; B=[0; 1; 2]; C=[1,0,2]; D=0; G=ss(A,B,C,D); [y,t,x]=impulse(G); plot(t,y), figure, plot(t,x)
www.eeworm.com/read/145494/12718519

m p238_2.m

t=0:0.2:15; y2=[]; for i=1:6 Gs=std_tf(3,1,i); y2=[y2,step(Gs,t)]; end plot(t,y2)
www.eeworm.com/read/145494/12718532

m ex5_25.m

G=tf(1,[1,1]); T=[0.1:0.1:1]; x=[]; y=[]; w=[0,logspace(-3,1,100),logspace(1,2,200)]'; for i=1:length(T) set(G,'Td',T(i)); [x0,y0]=nyquist(G,w); x=[x,x0(:)']; y=[y,y0(:)']; end plot(x,y),
www.eeworm.com/read/246557/12719797

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 let's look at it
www.eeworm.com/read/246557/12719893

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 % Setting the
www.eeworm.com/read/145385/12729179

m ex5_8.m

t=0:0.01:2*pi; x=exp(i*t); y=[x;2*x;3*x]'; plot(y) grid on; %加网格线 box on; %加坐标边框 axis equal %坐标轴采用等刻度