- 
                        DataMatrix
                        
                          说明:  基于Reed_Solomon算法的DataMatrix条码纠错码的研究基于Reed_Solomon算法的DataMatrix条码纠错码的研究(DataMatrix bar code based on Reed_Solomon algorithm of error-correcting codes DataMatrix bar code based Reed_Solomon algorithm of error-correcting codes)                         
                            - 2011-02-28 10:40:18下载
- 积分:1
 
- 
                        ofdm_256_awgn
                        
                          Program for ofdm modulation using awgn channel                         
                            - 2010-05-12 16:54:22下载
- 积分:1
 
- 
                        matlab
                        
                          应用matlab实现基于遗传算法的图像处理问题(Application of matlab genetic algorithm based on image segmentation)                         
                            - 2010-05-31 17:34:15下载
- 积分:1
 
- 
                        wave_matlab
                        
                          wavelet tool for image processing                         
                            - 2016-02-27 13:37:25下载
- 积分:1
 
- 
                        acfplot
                        
                          A very useful ploting function that plots the matlab correlation function up to user specified lags. You can also easily add titles.                         
                            - 2009-03-29 08:41:40下载
- 积分:1
 
- 
                        NumericalAnalysis
                        
                          基于MATLAB的数值分析例程,其中给出各种常用数值方法的MATLAT例程,希望对各位有用(MATLAB-based numerical analysis routines, which gives a variety of commonly used numerical methods MATLAT routine, you want to be useful)                         
                            - 2010-12-12 22:22:36下载
- 积分:1
 
- 
                        matlab_mp3
                        
                          利用Matlab实现Mp3文件的解码和播放的源程序。(Mp3 file using Matlab achieve decoding and playback of the source.)                         
                            - 2015-04-16 13:13:50下载
- 积分:1
 
- 
                        Hbridge
                        
                          simulink file of four quadrant operation of DC motor using chopper                         
                            - 2012-08-06 17:50:31下载
- 积分:1
 
- 
                        Matlabr2010b
                        
                          Matlabr2010b清晰教程 很有用的 大家分享下(Clear matlabr2010b tutorial useful to share under)                         
                            - 2013-05-12 21:33:08下载
- 积分: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