-
SRM
project on SRM drive system
The file is a Matlab m-file with all of the input parameters for the two Simulink models and It must be run prior to running the Simulink models to create the input parameters in the Matlab workspace. Because it is a Matlab m-file, it can be opened to change model input parameters. Once you have changed a parameter in you must run it again before you run the Simulink model to update the Matlab workspace and have the change take effect. The file is a Matlab m-file with all of the input parameters for the Simulink model.
- 2013-08-03 08:35:11下载
- 积分:1
-
Voice-traffic
stimulation of voice traffic using matlab
- 2014-10-10 01:41:31下载
- 积分:1
-
MATLAB03
matlab的基础知识ppt03,适合初学者,希望大家好好学习(matlab basics ppt03, suitable for beginners, I hope you learn)
- 2013-03-06 22:28:14下载
- 积分:1
-
Cycle-of-the-signal-spectrum-
对周期性信号进行循环谱估计,非常实用的代码!!(Cycle of the periodic signal spectrum estimation, a very useful code! !)
- 2011-10-20 16:30:07下载
- 积分:1
-
car
car model simulation
- 2013-12-18 00:12:34下载
- 积分:1
-
TL2
说明: 就是个测试文件,目前还在测试研究中,请多多指教(TEST)
- 2010-04-06 10:54:31下载
- 积分:1
-
ALLCHAPS
Watermarking, as opposed to steganography, has an additional requirement of robustness against possible attacks. An ideal steganographic system would embed a large amount of information perfectly securely, with no visible degradation to the cover object.
- 2011-07-15 15:16:53下载
- 积分:1
-
useful_functions_CRT
用于利用中国余数定理进行被除数恢复中几个函数的设计编写。(Using the Chinese remainder theorem is used for several functions dividend restoration design preparation.)
- 2013-10-30 16:05:25下载
- 积分:1
-
toolbox_fast_marching
The method mainly consists in considering a reference normal ECG segment and input ECG (unknown behavior) segment.
Each segment of the input ECG T is compared to the reference segment using SEA.
The SEA method outputs a measure in the range [0..1] in terms of the correlation factor that reflects the degree of similarity between the reference and the segment under analysis. Based on this measure, the whole segment is classified as normal or abnormal.
A user specified threshold value on the correlation factor c is used for decision
- 2011-11-10 13:11:39下载
- 积分:1
-
Chien搜索BCH译码算法
说明: %inverstable
inverse_tb = gf(zeros(1, t+1), m);
for i=1:t+1,
inverse_tb(i) = alpha^(-i+1);
end;
%chien's search
lambda_v = zero;
accu_tb=gf(ones(1, t+1), m);
for i=1:n,
lambda_v=lambda*accu_tb';
accu_tb = accu_tb.*inverse_tb;
if(lambda_v==zero)
error(1,n-i+1)=1;
else
error(1,n-i+1)=0;
end
end
found = find(error(1,:)~=0)
- 2021-04-23 11:08:47下载
- 积分:1