代码搜索:plot

找到约 10,000 项符合「plot」的源代码

代码结果 10,000
www.eeworm.com/read/306478/13744628

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/306478/13744632

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/306478/13744671

m ip_03_04.m

% MATLAB script for Illustrative Problem 3.4. % Demonstration script for LSSB-AM modulation. The message signal % is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3, and zero otherwise. clear echo o
www.eeworm.com/read/306478/13744673

m ip_03_02.m

% MATLAB script for Illustrative Problem 3.2. % Matlab demonstration script for DSB-AM modulation. The message signal % is m(t)=sinc(100t). clear echo on t0=.2; % signal du
www.eeworm.com/read/306478/13744695

m ip_03_11.m

% MATLAB script for Illustrative Problem 3.11. % Demonstration script for frequency modulation. The message signal % is m(t)=sinc(100t). clear echo on t0=.2; % sign
www.eeworm.com/read/306478/13744731

m ip_03_09.m

% MATLAB script for Illustrative Problem 3.9. % 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. clear echo on
www.eeworm.com/read/306232/13749015

m tfplot.m

function tfplot(s, fs, name, plottitle) % TFPLOT Time and frequency plot % TFPLOT(S, FS, NAME, TITLE) displays a figure window with two subplots. % Above, the signal S is plotted in time domain;
www.eeworm.com/read/306161/13751472

m lorenz.m

p=10; r=28; b=8/3; x(1)=10; y(1)=1; z(1)=0; h=0.01; for i=1:1:10000 K1=p*(y(i)-x(i)); L1=r*x(i)-y(i)-x(i)*z(i); M1=-b*z(i)+x(i)*y(i); K2=p*((y(i)+h/2*L1)-(x(i)+h/2*K1)
www.eeworm.com/read/305635/13764096

m exa080901_dct1.m

%-------------------------------------------------------------------------- % exa080901_dct1.m, for example 8.9.1 % to test dct.m; % 调用该程序的主程序是exa080901_dct1_test.m, %----------------------------
www.eeworm.com/read/305635/13764099

m exa030203.m

%---------------------------------------------------------------------------- % exa030203, for example 3.2.5 % to explain how to do DTFT %-----------------------------------------------------------