代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/439811/7701451
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/439811/7701453
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/439811/7701457
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/439811/7701496
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/439811/7701498
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/439811/7701520
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/439811/7701556
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/439680/7703218
asv chap4_10.asv
%Adaptive PID control based on Fuzzy RBF Identification
clear all;
close all;
xite=0.20; %学习速率
alfa=0.02; %惯性系数
c0=0.65*ones(2,5);
b0=0.30*ones(5,1);
w0=[0.5632 0.2176 0.5049
0.
www.eeworm.com/read/439680/7703219
m chap4_10.m
%Adaptive PID control based on Fuzzy RBF Identification
clear all;
close all;
xite=0.20; %学习速率
alfa=0.02; %惯性系数
c0=0.65*ones(2,5);
b0=0.30*ones(5,1);
w0=[0.5632 0.2176 0.5049
0.
www.eeworm.com/read/439680/7703226
m chap3_10.m
%PD Type Fuzzy Controller Design
clear all;
close all;
ts=0.001;
sys=tf(133,[1,25,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
e_1=0;
u_1=0;u_2=0;
y_1=0;y_2=0;
for k=1:1:10