代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/448905/7522802

m plotdata.m

% Appendix F: MATLAB Basics, Section F.5, p. 830-831. % % MATLAB's use of scripts is described in Section F.5. % The script described in Figure F.21 is given here. It % can be used to plot
www.eeworm.com/read/448535/7531216

m ifs3b.m

% Plot the logistic map and the orbit of a point % do not specify lambda and x0 here: it is done by an upper script % Copyright 1999 by Todd K. Moon t = 0:.05:1; hold off; plot(t,logistic(t,lamb
www.eeworm.com/read/448535/7531292

m testnn2.m

% test the neural network stuff % (run testnn1.m first to get the network trained) % % does some plots after the initial training is finished % Copyright 1999 by Todd K. Moon % the original t
www.eeworm.com/read/327991/7532436

m program_13_04.m

% 产生信号,设置阈值 t = linspace(0,1,100); y = 0.8*sin(2*pi*t); subplot(1,3,1),plot(y); title('原始信号'),grid on; thr = 0.4; % 进行硬阈值处理 ythard = wthresh(y,'h',thr); subplot(1,3,2),plot(ythard ); title(
www.eeworm.com/read/448259/7535733

m exa5_22.m

%-------------------------------------------------------------------------- % exa060605_remez.m, for example 6.6.5; % to test remez and to design bandpass FIR filter; %---------------------------
www.eeworm.com/read/448259/7535840

m exa1_33.m

% exa1-33_sinc.m for example 1-33 % sinc function clear all; x=linspace(-6,6); y=sinc(x); plot(x,y)
www.eeworm.com/read/447973/7542794

m viewmodelprobability.m

%%% DynaEst 3.032 10/22/2000 % Copyright (c) 2000 Yaakov Bar-Shalom % %ViewModelProbability subplot(1,1,1) ; % After filter gain ViewStatusFlag = DRAW_MODEL_PROBABILITY; colordef none; legen
www.eeworm.com/read/447960/7542948

m zuixiaoercheng.m

clear L=15; y1=1;y2=1;y3=1;y4=0; for i=1:L; x1=xor(y3,y4);x2=y1;x3=y2;x4=y3; y(i)=y4; if y(i)>0.5,u(i)=-0.03; else u(i)=0.03; end y1=x1;y2=x2;y3=x3;y4=x4; end %产生输入信
www.eeworm.com/read/447711/7546315

m program_13_04.m

% 产生信号,设置阈值 t = linspace(0,1,100); y = 0.8*sin(2*pi*t); subplot(1,3,1),plot(y); title('原始信号'),grid on; thr = 0.4; % 进行硬阈值处理 ythard = wthresh(y,'h',thr); subplot(1,3,2),plot(ythard ); title(
www.eeworm.com/read/447444/7551017

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 %覆盖旧图