代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/244035/12897383
m ex_09_10_1.m
% ex_09_10_1.m : 习题 9.10
clear all;
close all;
t=0:0.01:3;
a(1:100)=1;
a(101:200)=-1;
a(201:301)=1;
fs=1;
fc=.3;
figure('color','w');
subplot(421)
plot(t,a)
ylabel('a(t)')
axis([0 3
www.eeworm.com/read/244035/12897420
m ex_07_01_1.m
% ex_07_01_1.m : 习题 7.1
clear all;
close all;
N=28;
wn=0.25;
b1=fir1(N,wn,'stop',boxcar(N+1));
b2=fir1(N,wn,'stop',hamming(N+1));
[h1,w1]=freqz(b1,1,256,1);
[h2,w2]=freqz(b2,1,256,1)
www.eeworm.com/read/142729/12929561
m script_text.m
% script to classify text using ICA
% by Thomas Kolenda DTU,IMM 2000,2002 version 2
close all
clear all
format compact
% settings
ClassFrac=0; % Reject frac for classification
www.eeworm.com/read/243621/12931412
m optimip.m
% RECENTLY THERE HAS BEEN DEMONSTRATIONS OF BREAKAGE OF DIFFERENT CHAOTIC
% MAPS LIKE BERNOULLI and OTHER MAPS.SO HERE WE ARE GOING FOR NOVEL
% APPROACH IN THE SENSE OF MIXING VARIOUS MAPS IN DIFFER
www.eeworm.com/read/243621/12931414
m newchao.m
% OPTICAL LOGISTIC MAP BUILT USING MACH ZEHNDER INTERFEROMETERS.SO BEST IS TO GO FOR THIS TYPE OF COMMUNICATION USING CHAOTIC SEQUECNES.THIS PROGRAM
% IS BASED ON K.UMENOS PAPER PRESENTED AT 5th EXPE
www.eeworm.com/read/243539/12935152
m rttgdemo.m
% Copyright (C) 1993-2002, by Peter I. Corke
% $Log: rttgdemo.m,v $
% Revision 1.3 2002/04/02 12:26:49 pic
% Handle figures better, control echo at end of each script.
% Fix bug in calling ctraj.
%
www.eeworm.com/read/142361/12950049
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/142361/12950088
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/142353/12950813
m lintest.m
% PROGRAM FOR DEMONTRATING CONTROL BASED ON INSTANTANEOUS LINEARIZATION
%
% Programmed by Magnus Norgaard, IAU/IMM, Technical Univ. of Denmark
% LastEditDate: Feb. 20, 1996
close all
StopDemo=0;
www.eeworm.com/read/243218/12954795
m nalagr2.m
fplot('1./(x.^2+1)',[-10 10 0 1]);
hold on
x=linspace(-10,10,10);y=1./(x.^2+1);
xx=linspace(-10,10,100);
yy=nalagr(x,y,xx);
plot(xx,yy,'g')
hold on
x=linspace(-10,10,6);y=1./(x.^2+1);
xx=lin