代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/356183/10235305

m fig9_20.m

clear all eps = 0.0000001; npts = 5000; del = 1./ 5000.; t = 0. : del : 1.; % generate input sequence inp = 1.+ t.^3 + .5 .*t.^2 + cos(2.*pi*5 .* t) ; % read the intial estimate for the state v
www.eeworm.com/read/356183/10235306

m fig9_21.m

clear all eps = 0.0000001; npts = 5000; del = 1./ 5000.; t = 0. : del : 1.; % generate input sequence inp = 1.+ t.^3 + .5 .*t.^2 + cos(2.*pi*5 .* t) ; % read the intial estimate for the state v
www.eeworm.com/read/356183/10235308

m fig9_28.m

clear all npts = 2000; del = 1/2000; t = 0:del:1; inp = (1+.2 .* t + .1 .*t.^2) + cos(2. * pi * 2.5 .* t); X0 = [1,.1,.01]'; % it is assumed that the measurement vector H=[1,0,0] % this is the
www.eeworm.com/read/356183/10235309

m fig9_27.m

clear all npts = 2000; del = 1/2000; t = 0:del:1; inp = (1+.2 .* t + .1 .*t.^2);% + cos(2. * pi * 2.5 .* t); X0 = [1,.1,.01]'; % it is assumed that the measurmeny vector H=[1,0,0] % this is the
www.eeworm.com/read/281278/10251870

m vedicentro.m

% image acquisition a=imread('101_1.tif'); % rotate image a=imrotate(a,-20); % write to a BitMap image the rotated mage img=double(a); % if image sizes are not 8*K where K is an integer % image
www.eeworm.com/read/426350/10257416

m 实例33.m

h0=figure('toolbar','none',... 'position',[200 150 450 250],... 'name','实例33'); x=0:0.5:2*pi; y=sin(x); h=plot(x,y); grid on huidiao=[... 'if i==1,',... 'i=0;,',... 'y=co
www.eeworm.com/read/426350/10257503

m 实例36.m

h0=figure('toolbar','none',... 'position',[200 150 450 250],... 'name','实例36'); x=0:0.5:2*pi; y=sin(x); h=plot(x,y); grid on hm=uicontrol(gcf,'style','popupmenu',... 'string',...
www.eeworm.com/read/426350/10257558

m 实例14.m

function shili14 h0=figure('toolbar','none',... 'position',[200 150 450 250],... 'name','实例14'); axis([0 10 0 10]); hold on x=[]; y=[]; n=0; disp('单击鼠标左键点取需要的点'); disp('单击鼠标右键点取最后一个点
www.eeworm.com/read/355530/10258987

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/355530/10259005

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