代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/155843/11844267

m exa090702.m

% ------------------------------------------------------------------- % exa090702.m, for example 9.7.2 and fig 9.7.2 % 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。 % 本程序给出的是连续小波变换的灰度图表示。 %--------------------
www.eeworm.com/read/155843/11844335

m exa120502.m

%-------------------------------------------------------------------------- % exa120502.m, for example 12.5.2 and fig12.5.4 %-----------------------------------------------------------------------
www.eeworm.com/read/155843/11844401

m exa010201a.m

%--------------------------------------------------------------------------------------- % exa010201a.m, for example 1.2.2 % 说明信号的子带分解; %----------------------------------------------------------
www.eeworm.com/read/155809/11845669

m chap3_10.m

%PD Type Fuzzy Controller Design clear all; close all; ts=0.001; sys=tf(133,[1,25,0]); dsys=c2d(sys,ts,'z'); [num,den]=tfdata(dsys,'v'); e_1=0; u_1=0;u_2=0; y_1=0;y_2=0; for k=1:1:10
www.eeworm.com/read/155791/11847971

m delaye.m

lags = [1 0.5]; tx = dde23('f1', lags, 'f2', [10, 120]); plot(tx.x,tx.y(2,:));
www.eeworm.com/read/258606/11850997

m chap3_10.m

%PD Type Fuzzy Controller Design clear all; close all; ts=0.001; sys=tf(133,[1,25,0]); dsys=c2d(sys,ts,'z'); [num,den]=tfdata(dsys,'v'); e_1=0; u_1=0;u_2=0; y_1=0;y_2=0; for k=1:1:10
www.eeworm.com/read/344814/11857751

m exp2_4_.m

close all clc clear %定义时间范围 t=[0:pi/20:9*pi]; hold on %允许在同一坐标系下绘制不同的图形 plot(t,sin(t),'r:*') plot(t,cos(t)) plot(t,-cos(t),'k') grid on %在所画出的图形坐标中添加栅格,注意用在plot之后 hold off %覆盖旧图
www.eeworm.com/read/344814/11857783

m exp2_4.m

close all clc clear %定义时间范围 t=[0:pi/20:9*pi]; figure(1) %选择图像 plot(t,sin(t),'r:*') grid on %在所画出的图形坐标中添加栅格,注意用在plot之后 grid off %删除栅格 figure(2) plot(t,cos(t)) grid on grid off
www.eeworm.com/read/155568/11863120

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/344733/11863230

m a1.m

b=1; L=100; h1=-0.8; u=0.03; h0=0; x=randn(1,L); w=sqrt(b)*randn(1,L); s=h1*x; y=s+w; n=1:L; subplot(3,1,1) plot(n,s,'-',n,y,':') Hg(1)=h0; Sg(1)=Hg(1)*x(1); for i=2:L Hg(i)=Hg(i-1)