代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/445829/7589567
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).
echo on
t0=.2; % signal duration
www.eeworm.com/read/445829/7589568
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/445829/7589569
m lssb.m
% lssb.m
% Matlab 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.
echo on
t0=.15;
www.eeworm.com/read/445829/7589572
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).
echo on
t0=.2; % signal dura
www.eeworm.com/read/445829/7589577
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.
echo on
t0=.1
www.eeworm.com/read/445421/7595619
m program_2d.m
% Chapter 2 - Nonlinear Discrete Dynamical Systems.
% Program 2d - Bifurcation diagram of the logistic map.
% Copyright Birkhauser 2004. Stephen Lynch.
% Plot a bifurcation diagram (Figure 2.15).
www.eeworm.com/read/445364/7596340
m demo1.m
function demo1
%
% Demo of the generalization process using Gaussian Mixture Regression
% (GMR). This software loads a 3D dataset, trains a Gaussian Mixture Model
% (GMM), and retrieves a general
www.eeworm.com/read/444975/7602119
asv bifurcation2dmap.asv
%这个小程序虽然很简单,但可以求非线性动力学或者复杂经济学中经常遇到的类似问题。
%也可以求更高维数的离散系统的bifurcation diagram. 可以根据研究需要,选择分岔图中点的颜色和大小。
clear;
clf;
r=linspace(0,0.5,4000);
t=200;
j=1;
while j
www.eeworm.com/read/444759/7607403
m holder.m
function h=holder(tfr,f,n1,n2,t,pl)
%HOLDER Estimate the Holder exponent through an affine TFR.
% H=HOLDER(TFR,F,N1,N2,T) estimates the Holder exponent of a
% function through an affine time-frequenc
www.eeworm.com/read/444759/7607484
m 6-9.m
%例程6-9 方波信号的离散小波变换
% e.g.6-9.m for example6-9;
%test the function of wavedec.
clear all;
t=0:.01*pi:10*pi;
x=square(t,80);
X=x+randn(size(x))/10;
subplot(5,2,1:2); plot(t,X);
xlabel('Time