代码搜索:Matlab仿真

找到约 10,000 项符合「Matlab仿真」的源代码

代码结果 10,000
www.eeworm.com/read/424063/10502629

htm commhelp.htm

Communications Toolbox Tutorial Communications Toolbox Tutorial What Is the Communications Toolbox The Communications Toolbox is a collection of MATLAB
www.eeworm.com/read/160618/10514237

m exa090702.m

% ------------------------------------------------------------------- % exa090702.m, for example 9.7.2 and fig 9.7.2 % 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。 % 本程序给出的是连续小波变换的灰度图表示。 %--------------------
www.eeworm.com/read/160515/10523467

txt~ readme.txt~

Kalman filter toolbox written by Kevin Murphy, 1998. See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details. This version was last updated on 18 January 2003. Installation ------------
www.eeworm.com/read/160515/10523521

txt readme.txt

Kalman filter toolbox written by Kevin Murphy, 1998. See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details. Installation ------------ 1. Install KPMtools from http://www.ai.mit.edu/~mu
www.eeworm.com/read/160476/10527423

htm ofdm simulator.htm

OFDM Simulator
www.eeworm.com/read/423896/10527568

m ex22.m

%《MATLAB及其在理工课程中的应用指南》第二章第二节演示程序 % 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版 % echo off pause,disp('矩阵中每一个元素取同样的显示格式') pause,disp('矩阵中元素都很大或很小时,自动取出10的幂次公因子。') pause,disp('矩阵中元素量级差很大时,小数将显示为0. ...
www.eeworm.com/read/423896/10527681

m ex514.m

%《MATLAB及其在理工课程中的应用指南》第五章例5-1-4程序 % 曲线族的绘制 % 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版 % x=-2:0.1:2; % 给定x数组,确定范围及取点密度 subplot(1,2,1) % 分两个画面绘图 for c=-3:3 plot(x,x.^3+c*x),hold on, en
www.eeworm.com/read/423896/10527796

m ex733.m

%《MATLAB及其在理工课程中的应用指南》(第二版)第七章例7-3-3程序 % 二自由度无阻尼振动的传统建模和解耦求解程序 % 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版 % m1=1; m2=9; k1 = 4; k2=2; % 输入各原始参数 x0 = [1;0]; xd0 = [0;-1]; tf= 20; M = [m1,0
www.eeworm.com/read/352501/10545590

c sin1500matl.c

//Sin1500MATL.c Generates sine from table created with MATLAB #include "sin1500.h" //sin(1500) created with MATLAB short i=0; interrupt void c_int11() { output_sample(sin1500[i]); //o
www.eeworm.com/read/423536/10553028

m ip_04_04.m

% MATLAB script for Illustrative Problem 4, Chapter 4. a=[-10,-5,-4,-2,0,1,3,5,10]; for i=1:length(a)-1 y(i)=centroid('normal',a(i),a(i+1),0.001,0,1); end