代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/460578/7246956
m iden_c22c.m
%-----------------------------------------------------------------------
% Model Identification Using Relay Feed-back with delay width 'h'
%-------------------------------------------------------
www.eeworm.com/read/460578/7246968
m iden_c22d.m
%-----------------------------------------------------------------------
% Model Identification Using Relay Feed-back with delay width 'h'
%-------------------------------------------------------
www.eeworm.com/read/460435/7250833
m plotr.m
%PLOTR Plot regression
%
% PLOTR(W)
% PLOTR(W,CLR)
%
% Plot the regression function W, optionally using plot string CLR.
% This plot string can be anything that is defined in plot.m.
% For the b
www.eeworm.com/read/460016/7259000
m 例5-4.m
>> t=0:0.2:2*pi;
>> plot(t,sin(t),'>',t,cos(t),'+');
>> xlabel('x'),ylabel('y');
>> title('sin(x) and cos(x)');
>> legend('sin wave','cos wave')
www.eeworm.com/read/460016/7259044
m 例2-28.m
>> clear;
>> a=[-1,0,0;0,-2,0;0,0,-3]
>> x0=[1;1;1];
>> t=0:0.1:1.0;
>> for i=1:length(t)
>> plot3(x(1,:),x(2,:),x(3,:));
>> grid on
www.eeworm.com/read/460016/7259100
m 例8-9.m
>> u=test.time;
>> x1=test.signals.values;
>> plot(u,x1),grid on
>> xlabel('kT')
>> ylabel('x1(KT)')
www.eeworm.com/read/460016/7259101
m 例8-7.m
>> [t,x,y]=sim('test2',10);
>> clf,hold on
>> plot(t,y(:,1),'b')
>> stairs(t,y(:,2),'r')
>> stairs(t,y(:,3),'g'),hold off
>> axis([0 10 -1.1 1.1]),box on
>> legend('正弦波','输出','三角形',4)
www.eeworm.com/read/459909/7263180
m am.m
% am.m
% Matlab demonstration script for DSB-AM modulation. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise.
echo on
t0=.15; %
www.eeworm.com/read/459909/7263181
m dsb2.m
% dsb2.m
% Matlab demonstration script for DSB-AM modulation. The message signal
% is m(t)=sinc(100t).
echo on
t0=.2; % signal duration
ts=0.001; % sampling interval
fc=250; % ca
www.eeworm.com/read/459909/7263183
m am_dem.m
% am-dem.m
% Matlab demonstration script for envelope detection. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise.
echo on
t0=.15;