代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/307467/13721985
m srz.m
function y=srz(x) %本函数实现将输入的一段二进制代码变为相应的单极性归零码输出
%输入x为二进制码,输出y为变出的单极性归零码
t0=300;
t=0:1/t0:length(x);
for i=1:length(x)
if (x(i) == 1)
for j=
www.eeworm.com/read/307467/13721988
m drz.m
function y=drz(x) %本函数实现将输入的一段二进制代码变为相应的双极性归零码输出
%输入x为二进制码,输出y为变出的双极性归零码
t0=300;
t=0:1/t0:length(x);
for i=1:length(x)
if (x(i) == 1)
for j=
www.eeworm.com/read/307267/13724801
txt frequencyspectrum.txt
n=[-64:64];
y=sin(pi*n/25);
subplot(2,1,1);
plot(n,y);
Y=fft(y); %对正弦信号fft变换
subplot(2,1,2);
plot(n,abs(Y));
ylabel('Y(k)');
title('信号频谱分布');
d,锯齿波
Fs=500;
t=0:1/Fs:0.3;
x=sawtoot
www.eeworm.com/read/307174/13727252
m biology.m
clear;
n=10000;
x=zeros(n,1);
x(1)=0.1;
i=1;
while i
www.eeworm.com/read/306917/13735198
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/306917/13735239
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/306917/13735264
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/306917/13735405
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/306917/13735410
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/306917/13735412
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