代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/481147/6643979

m wireless_microphone.m

%产生待感知信号:(PART 74 wireless microphone)AM调制的无线话筒信号(载波频率300KHz,调制信号100KHz余弦信号,信噪比为10dB) function [S,s]=wireless_microphone(to) clear all; echo on to=1; % signal
www.eeworm.com/read/481195/6644466

m qpsk.m

data=rand(1,10)>0.5; fb=500;fc=500; M=32; tb=1/fb;tc=1/fc; step=tb/M; ebn0=25; fs=M/tb; data1=data*2-1; datai=data1(1:2:10-1); dataq=data1(2:2:10); for i = 1:10 for j = 1:M
www.eeworm.com/read/481241/6645741

m xhm.m

clc clear B=-10:60; m=1; pe=[]; for n=1:length(B) M=B(n); sim('xhm.mdl'); pe(n)=ErrorVec(1); m=m+1; end plot(B,pe); grid;
www.eeworm.com/read/480934/6654004

m wireless_microphone.m

%产生待感知信号:(PART 74 wireless microphone)AM调制的无线话筒信号(载波频率300KHz,调制信号100KHz余弦信号,信噪比为10dB) function [S,s]=wireless_microphone(to) clear all; echo on to=1; % signal
www.eeworm.com/read/480713/6660126

m touchtone.m

function touchtone(arg) % TOUCHTONE Use FFT to synthesize and analyze telephone dialing % % The dual tone multi-frequency (DTMF) standard specifies that the tone % generated by a button on a tele
www.eeworm.com/read/480430/6664070

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/480430/6664084

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/480430/6664107

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/480430/6664137

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/480430/6664152

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)