-
11
说明: matlab GUI,包括confirm对话框和modal型图形界面的用法。(matlab GUI, including the confirm dialog box and the use of modal-based graphical interface.)
- 2010-06-04 01:35:57下载
- 积分:1
-
GMSK1
利用matlab实现GMSK,调制出各个时间段的波形。如基带波形,相位波形,GMSK波形等(Using matlab to achieve GMSK, modulation of the waveform each time. Such as baseband waveform, phase, waveform, GMSK waveforms)
- 2011-05-16 21:57:36下载
- 积分:1
-
qipaofenxijiance
一个简易的用matlab做的用于检测气泡分析的小实验(A simple to use matlab to do a little experiment to detect bubbles)
- 2021-05-08 02:13:36下载
- 积分:1
-
1
说明: 一篇关于异步电机滑模变结构直接转矩控制的硕士论文(a paper of induction motor based on sliding mode DTC )
- 2011-10-05 11:32:40下载
- 积分:1
-
kalmanlvbo
说明: 基于卡尔曼滤波器的PID控制器参数优化程序,matlab编程,matlab环境运行
(Kalman filter based on the PID parameter optimization procedures, Matlab programming, Matlab environment running)
- 2006-05-10 16:59:00下载
- 积分:1
-
802.11a-OFDM-MATLAB-Code
802.11a OFDM MATLAB仿真代码(802.11a OFDM MATLAB simulation code)
- 2013-11-06 14:23:32下载
- 积分:1
-
FBG_Gausii_CaoXueMei
高斯FBG曲线的Matlab实现方法,欢迎拍砖,呵呵呵(FBG_gussi_Curves,FBG_gussi_CurvesFBG_gussi_CurvesFBG_gussi_Curves)
- 2010-01-02 11:57:05下载
- 积分:1
-
major-factor-ananlyze
一般统计数据中有很多变量,采用组成分分析法,可以既有效抓住有效信息,又实现降维。本程序采用实例,来说明此方法。(General statistics, there are many variables, sub-components analysis, can only effectively capture useful information, but also to achieve dimensionality reduction. The program uses examples to illustrate this method.
)
- 2011-07-18 22:52:24下载
- 积分:1
-
maichongyasuo
包含了脉冲压缩信号中普遍使用的线性调频信号,二相编码信号的相关处理的仿真代码。(Contains the linear frequency modulation pulse compression signal in common use, simulation code correlation processing of binary phase coded signal.)
- 2015-04-01 18:19:34下载
- 积分:1
-
mini2
clear all
clc
t=0:1/1000:10-1/1000
s=sin(2*pi*t)
snr=20
s_power=var(s) varience of s
linear_snr=10^(snr/10)
factor=sqrt(s_power/linear_snr)
noise=randn(1,length(s))*factor
x=s+noise Ó É SNR¼ Æ Ë ã Ë æ » úÔ ë É ù
x1=noise Ô ë É ùÔ ´ Ê ä È ë
x2=noise
w1=0 È ¨Ï µ Ê ý ³ õ Ö µ
w2=0
e=zeros(1,length(x))
y=0
u=0.05
for i=1:10000 LMSË ã ·¨
y(i)=w1*x1(i)+w2*x2(i)
e(i)=x(i)-y(i)
w1=w1+u*e(i)*x1(i)
w2=w2+u*e(i)*x2(i)
end
figure(1)
subplot(4,1,1)
- 2010-10-26 16:41:03下载
- 积分:1