代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/447444/7551025
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/446979/7561699
m matlab_askbpsk.m
%Run from editor Debug(F)
%This m file(ASK.m) analyzes a coherent amplitute shift keyed(ASK) and a binary
%phase shift keyed(BPSK) communication system. The receiver uses a correlator
%(mixer-integ
www.eeworm.com/read/446807/7564549
m filter.m
clear;
h=[1 2 3 4 5 6 7 8 9 10 8 7 6 5 4 3 2 1 ];
x=randn([1,1000]);
subplot(2,1,1),plot(x);
axis([0,1000,-5,5]);
z=filter(h,sum(h),x);
subplot(2,1,2);
plot(z);
axis([0,1000,-5,5]);
www.eeworm.com/read/446736/7569445
m plotpz.m
%plotpz.m - plot the zero and pole plane from
%transfer function
% -1 -2
% b(1)+b(2)*z +b(3)*z
%H(z)=-------------------------
% -1 -2
% a(1
www.eeworm.com/read/446689/7571222
m shili14.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/446689/7571263
m shili33.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/446689/7571288
m shili36.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/446689/7571429
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/446689/7571434
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/446689/7571436
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