代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/154760/11928736
m periodic.m
function y = periodic(x,tp,T)
% PERIODIC Generates a periodic signal.
%
% YP = PERIODIC(FUNC,t,T) generates a periodic pulse train.
% FUNC = a string function of t describing the
www.eeworm.com/read/154760/11928749
m axesn.m
function axesn(l,x,y,lin,clr)
% AXESN Draws axes with arrowtips.
%
% AXESN(L,X,Y,LIN,CLR) draws axes thru L = [X0 Y0] with arrowtips.
% [Default: L = (0,0) or bottom left corner of pl
www.eeworm.com/read/343760/11928814
m nihe.m
load y1.txt
y1=flipud(y1);
YY1=-y1(1:1000,2);
T=1.0;
for k=1:1000
X(k)=k*T;
end
for i=1:1000
jx(i)=0.0;
end
plot(jx,'r')
hold on
p
www.eeworm.com/read/154760/11928975
m fseries.m
function [v,c,e,h1,mm]=fseries(x,t0,mm,ty,pw1,pw2)
% FSERIES Fourier series of periodic signal.
%
% [V,C,E,H,M] = FSERIES(x,T,k,w,p1,p2) Fourier Series of signal x
% T=[P td] where P = period(0,P), td
www.eeworm.com/read/154760/11929102
m phasor.m
function phasor(x,y,sty,clr)
% PHASOR Phasor diagram for complex vector.
%
% PHASOR(X,Y,STY,CLR): Phasor diagram for the complex variable
% X + i*Y plotted with the point style STY a
www.eeworm.com/read/154760/11929252
m phone.m
function phone(action)
%PHONE Signal processing and the touch-tone phone.
% Author(s): Ned Gulley, 6-21-93
% Copyright 1988-2002 The MathWorks, Inc.
% $Revision: 1.9 $ $Date: 2002/03/28
www.eeworm.com/read/343756/11929956
m test.m
clc
clear
p=0:0.1:5
t=sqrt(p);
r=0.2;
[c ,w ,nr ]=zjwnnc (p ,t ,r)
x=0:0.2:5
n=size(x,2);
sumd=zeros(1,n);
sumdd=zeros(1,n);
testout=zeros(1,n);
for j=1:1:n
for i=1:1:nr
d=(w(:
www.eeworm.com/read/343634/11937562
m zrectpuls.m
%产生长度为1s的非周期方波,宽度为0.6s
t=0:0.1:1;
x=rectpuls(t,0.6);
plot(t,x);
www.eeworm.com/read/343634/11937956
m zsinc.m
%典型的Sinc函数波形
t=-10:0.01:10;
x=sinc(t);
plot(t,x); %产生典型的Sinc函数
www.eeworm.com/read/343629/11938207
m zginput.m
x=linspace(-2*pi,2*pi,60)
y=sin(x)*2
plot(x,y)
[a,b]=ginput(8);
hold on
plot(a,b,'blacko')
hold off