代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/449504/7502271
m optim3_d.m
% PURPOSE: An example of optimization
% solving a time-varying parameter model
% from Kim and Nelson pages 44-49
%
%---------------------------------------------------
% USAG
www.eeworm.com/read/449129/7517975
m lls_demo.m
%
%
% Linear least squares demo
%
% Load the Filip data set
% (see http://www.itl.nist.gov/div898/strd/lls/data/Filip.shtml)
load Filip.dat
y = Filip(:,1);
x = Filip(:,2);
% perturb measurements
%y
www.eeworm.com/read/449128/7517979
m demo_pol_bases.m
%
% Polynomial Interpolation
%
x = [ 0; 1; -1; 2; -2];
f = [ -5; -3; -15; 39; -9];
n = size(x(:),1);
z = (-2:0.01:2)';
m = size(z,1);
disp(' Display the polynomial bases used in interpolation '
www.eeworm.com/read/449126/7518009
m touchtone.m
function touchtone(arg)
% TOUCHTONE Use FFT to synthesize and analyze telephone dialing
%
% The dual tone multi-frequency (DTMF) standard specifies that the tone
% generated by a button on a telephon
www.eeworm.com/read/449044/7519506
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/449044/7519545
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/449044/7519569
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/449038/7519814
m chap3_10.m
%PD Type Fuzzy Controller Design
clear all;
close all;
ts=0.001;
sys=tf(133,[1,25,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
e_1=0;
u_1=0;u_2=0;
y_1=0;y_2=0;
for k=1:1:10
www.eeworm.com/read/448922/7522207
m ofdmguifn.m
function OFDMguiFn(action)
% Consolidates all of the GUI callbacks into one main function
stringArray = [...
% Slide 1
'Welcome to the basic OFDM (Orthogonal Frequency '...
'Division Multipl
www.eeworm.com/read/448905/7522784
m fig6_14.m
% Chapter 6: Figure 6.14, p. 315
%
% Compute and plot the roots of the characteristic
% equation q(s) = s^3 + 2 s^2 + 4 s + K for 0 < K < 20.
%
K=[0:0.5:20 ];
for i=1:length(K)
q=[1 2 4 K(i)];
p