代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/422117/10662939
m tu.m
diff=zeros(1,61);
m=0;
for k=-150:5:150;
m=m+1;
diff(m)=fmodulate1(k);
end
ff=-150:5:150;
clf;
plot(ff,diff)
www.eeworm.com/read/421977/10672944
m examp5_5.m
subplot(221), plot(tout,yout(:,4))
subplot(222), plot(tout,yout(:,1))
subplot(223), plot(tout,yout(:,2))
subplot(224), plot(tout,yout(:,3))
www.eeworm.com/read/351013/10687907
m eventplot.m
function h = eventplot(X)
% h = eventplot(X)
% Method for seismicdecon example supplied with SA Tools.
% See http://www.frostconcepts.com/software for information on SA Tools.
%
% h = eventplot
www.eeworm.com/read/276944/10692878
m figure1_meanshiftvsmedoidshift.m
x = [randn(2,500) [-4;-0]];
indo = 501;
currPt = x(:,indo);
range = -5:0.1:5;
sigma = 1;
% Create Contour Plot
c1 = 1;
for i = range
c2 = 1;
for j = range
pt = [i j]';
www.eeworm.com/read/421782/10699222
m kalman.m
% kalman filtering
% 用一个线性随机微分方程来描述离散控制过程系统:X(k)=A X(k-1)+B U(k)+W(k)
% 系统的测量值:Z(k)=H X(k)+V(k)
% X(k)是k时刻的系统状态,U(k)是k时刻对系统的控制量。A和B是系统参数,对于多模型系统,他们为矩阵。
% Z(k)是k时刻的测量值,H 是测量系统的参数,对于多测量系统,H为矩阵。
%
www.eeworm.com/read/350857/10705528
m exa080901_dct1.m
%--------------------------------------------------------------------------
% exa080901_dct1.m, for example 8.9.1
% to test dct.m;
% 调用该程序的主程序是exa080901_dct1_test.m,
%----------------------------
www.eeworm.com/read/350857/10705541
m exa030203.m
%----------------------------------------------------------------------------
% exa030203, for example 3.2.5
% to explain how to do DTFT
%-----------------------------------------------------------
www.eeworm.com/read/350857/10705545
m exa080901_dct1_test.m
%---------------------------------------------------------------------------
% exa080901_dct1_test, for exa8.9.1
% to call function exa080901_dct1;
%------------------------------------------------
www.eeworm.com/read/350857/10705556
m exa070901_fir1.m
%-------------------------------------------------------------------------------
% exa070901_fir1.m , for example 7.9.1 and 7.1.1
% to test fir1.m,
%------------------------------------------------
www.eeworm.com/read/350857/10705559
m exa090300_2.m
%-----------------------------------------------------------------------------
% exa090300_2.m, for fig. 9.3.2,
%-----------------------------------------------------------------------------
clea