代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/424063/10499269
m dsb1.m
% dsb1.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/424063/10499310
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/424063/10499316
m fm2.m
% fm2.m
% Matlab demonstration script for frequency modulation. The message signal
% is m(t)=sinc(100t).
echo on
t0=.2; % signal duration
ts=0.001;
www.eeworm.com/read/424063/10499348
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/424063/10499592
m dnyquist.m
function [reout,im,w] = dnyquist(a,b,c,d,Ts,iu,w)
%DNYQUIST Nyquist frequency response for discrete-time linear systems.
% DNYQUIST(A,B,C,D,Ts,IU) produces a Nyquist plot from the single
% input IU
www.eeworm.com/read/424063/10499709
m diskdemo.m
%DISKDEMO.M Demonstration design of harddisk digital controller.
echo on
% This file demonstrates MATLAB's ability for classical digital control
% system design by going through the design of a c
www.eeworm.com/read/424063/10499776
m kalmdemo.m
echo on
% This file demonstrates MATLAB's ability to do Kalman filtering.
% Both a steady state filter and a time varying filter are designed
% and simulated below.
echo off
% Copyright (c)
www.eeworm.com/read/424063/10499853
m nyquist.m
function [reout,im,w] = nyquist(a,b,c,d,iu,w)
%NYQUIST Nyquist frequency response for continuous-time linear systems.
% NYQUIST(A,B,C,D,IU) produces a Nyquist plot from the single input
% IU to all
www.eeworm.com/read/424063/10501017
m plotsim.m
function plotsim(t,x,y)
%PLOTSIM Function called by the integrators to plot graphs.
% This function is only called when the integrators are
% called with no left hand arguments.
% If you don't wa
www.eeworm.com/read/160693/10506038
m 3-4-5-2.m
%绘制指数函数曲线
p=-1:0.05:1;
t=exp(-p);
plot(p,t);
grid;
title('exponential function');
xlabel('x');
ylabel('y');
figure;
%建立并训练网络
for i=1:5
net=newgrnn(p,t,i/10);
y(i,:)=sim(net,p);
en