Welcome![Sign In][Sign Up]
Location:
Search - Performance Analysis matlab

Search list

[Compress-Decompress algrithmsSPIHT(Matlab).zip

Description:

% Matlab implementation of SPIHT (without Arithmatic coding stage)
%
% By Jing Tian, scuteejtian@hotmail.com

fprintf('-----------   Welcome to SPIHT Matlab Demo!   ----------------\n');

fprintf('-----------   Load Image   ----------------\n');
infilename = 'lena512.bmp';
outfilename = 'lena512_reconstruct.bmp';

Orig_I = double(imread(infilename));

rate = 1;

OrigSize = size(Orig_I, 1);
max_bits = floor(rate * OrigSize^2);
OutSize = OrigSize;
image_spiht = zeros(size(Orig_I));
[nRow, nColumn] = size(Orig_I);

fprintf('done!\n');
fprintf('-----------   Wavelet Decomposition   ----------------\n');
n = size(Orig_I,1);
n_log = log2(n);
level = n_log;
% wavelet decomposition level can be defined by users manually.
type = 'bior4.4';
[Lo_D,Hi_D,Lo_R,Hi_R] = wfilters(type);

[I_W, S] = func_DWT(Orig_I, level, Lo_D, Hi_D);

fprintf('done!\n');

fprintf('-----------   Encoding   ----------------\n');
img_enc = func_SPIHT_Enc(I_W, max_bits, nRow*nColumn, level);  

fprintf('done!\n');
fprintf('-----------   Decoding   ----------------\n');
img_dec = func_SPIHT_Dec(img_enc);

fprintf('done!\n');
fprintf('-----------   Wavelet Reconstruction   ----------------\n');
img_spiht = func_InvDWT(img_dec, S, Lo_R, Hi_R, level);

fprintf('done!\n');
fprintf('-----------   PSNR analysis   ----------------\n');

imwrite(img_spiht, gray(256), outfilename, 'bmp');

Q = 255;
MSE = sum(sum((img_spiht-Orig_I).^2))/nRow / nColumn;
fprintf('The psnr performance is %.2f dB\n', 10*log10(Q*Q/MSE));


Platform: | Size: 232873 | Author: jasonchang | Hits:

[CommunicationMATLAB-baseddigitalsignal-BandTransmissionSystemSi

Description: SIMULINK是 MATLAB 中动态系统建模、仿真和分析的一个集成环境 , 文中按照仿真过程基本步骤用 MATLAB 的仿真工具 SIMULINK实现了数字信号基带传输系统的仿真过程 , 对系统性能进行了分析-MATLAB SIMULINK is dynamic system modeling, simulation and analysis of an integrated environment, Simulation of the text in accordance with the basic process steps using MATLAB Simulink simulation tool to achieve a digital signal - Band Transmission System Simulation of the process, the system performance analysis
Platform: | Size: 159195 | Author: aaaaa | Hits:

[matlab通信原理眼图画法

Description: 通信原理实验中用matlab实现眼图画法,用来对通信系统进行性能分析-communication principle experiment using Matlab achieve eye picture, the communication systems used for performance analysis
Platform: | Size: 7168 | Author: 刘云 | Hits:

[BooksMatlab GUI编程中文参考手册

Description: MATLAB 的名称源自 Matrix Laboratory ,它是一种科学计算软件,专门以矩阵的形式处理数据。 MATLAB 将高性能的数值计算和可视化集成在一起,并提供了大量的内置函数,从而被广泛地应用于科学计算、控制系统、信息处理等领域的分析、仿真和设计工作,而且利用 MATLAB 产品的开放式结构,可以非常容易地对 MATLAB 的功能进行扩充,从而在不断深化对问题认识的同时,不断完善 MATLAB 产品以提高产品自身的竞争能力。重点介绍MATLAB创建图形用户界面应用程序的原则和方法,有大量具体的代码创建界面并实现相应用户动作的方法。 -MATLAB name from the Matrix Laboratory, it is a scientific computing software, specialized form of a matrix of data processing. MATLAB high-performance numerical computation and visualization integrated together, and provide a large number of built-in functions, which are widely used in scientific computation, control systems, information processing and other fields of analysis, simulation and design work, but using MATLAB product's open architecture can easily right MATLAB functions for the expansion, thus deepening the understanding of the problem, but also constantly improve MATLAB products to enhance their products competitive. Highlights MATLAB to create graphical user interface applications of the principles and methods, a large number of specific interface and creates a correspo
Platform: | Size: 194560 | Author: 洪春 | Hits:

[Communicationmatlab通信仿真psk误码分析

Description: MATLAB仿真通信PSK误码分析,主要用来测试SNR从0到10时的系统性能-MATLAB simulation PSK communication error analysis, SNR mainly used to test from 0 to 10 am on the system performance
Platform: | Size: 3072 | Author: 杨子 | Hits:

[matlabjitterbug-1.21

Description: jitterbug-1.21 一个基于MATLAB的工具箱,用于实时控制系统的性能分析软件。-jitterbug-1.21 based on a MATLAB Toolbox, for real-time control of system performance analysis software.
Platform: | Size: 31744 | Author: dixonxu | Hits:

[CommunicationSF_OFDM_channel_estimation

Description: 在信道不完美估计状况下,空频分组码在ofdm系统中的性能分析-in Channel estimates situation is not perfect, the air Frequency Block in OFDM System Performance Analysis
Platform: | Size: 2048 | Author: foeni | Hits:

[Windows Developbpskber

Description: QPSK BER 性能分析的 通过使用 matlab进行ber的性能分析-QPSK BER performance analysis through the use of matlab to ber Performance Analysis
Platform: | Size: 46080 | Author: zhuyunbin | Hits:

[matlabmultitone-jamming

Description: 短波信道抗多音干扰的性能分析及其仿真,不用解压密码,直接解压即可。-HF-channel Multi-tone interference performance analysis and simulation, not extracting passwords can be directly extracted.
Platform: | Size: 1303552 | Author: liuxinwhu | Hits:

[matlabofdmandtuxing

Description: OFDM的仿真程序,并且包括详细的WORD说明。最后负有误码率和各种性能分析的做图程序。斑竹可以检查-OFDM simulation program, and includes detailed WORD note. Finally with BER performance analysis and the various plans do procedures. Bamboo can check
Platform: | Size: 231424 | Author: 史新亮 | Hits:

[Modem programCVSO

Description: CPSK信号与OOK信号的最佳接收机模拟,画出了各自的性能分析,由于是matlab的初学者,很希望能到这学习交流,希望大家多多指教!-OOK CPSK signal and the best receiver signal simulation, which depicts the respective performance analysis, Since Matlab beginners, I hope to be able to learn from this exchange, we hope the exhibitions!
Platform: | Size: 3072 | Author: wulijun | Hits:

[source in ebookspacetimecode

Description: 用Matlab实现空时分组编码对其MIMO系统性能进行分析得出理想的结果-Using Matlab realize their space-time block coding MIMO system performance analysis of the desired results
Platform: | Size: 64512 | Author: 张晓娟 | Hits:

[matlab2mimo

Description: 在MIMO系统中的二乘二系统的模型代码,以及性能分析。-In the MIMO system model二乘II system code, as well as performance analysis.
Platform: | Size: 3072 | Author: 柳柳 | Hits:

[matlabMATLAB-OFDM-

Description: 基于MATLAB的OFDM系统仿真及性能分析,比较实用-MATLAB based on the OFDM system simulation and performance analysis, more practical
Platform: | Size: 350208 | Author: gxb | Hits:

[CommunicationThechannelestimationofdelayedfeedbackmimoofdmchann

Description: 掌握梳状导频和信道估计算法,实现MATLAB仿真;建立简单的系统结构和信道模型;在含多普勒频移的瑞利衰落信道下,进行含信道估计算法的OFDM系统仿真,并进行性能分析。 -Comb master and pilot channel estimation algorithm, the realization of MATLAB simulation the establishment of a simple system structure and channel model with Doppler frequency shift in the Rayleigh fading channel, the channel estimation algorithm with the OFDM system simulation and performance analysis.
Platform: | Size: 10240 | Author: 林杉 | Hits:

[Otherww

Description: 本论文以OFDM系统为基础,介绍了OFDM系统的基本原理,以及使用OFDM技术的优势所在,并且展望了今后的无线移动技术的发展前景。在简单介绍OFDM原理的同时,着重阐述了OFDM系统在不同信道环境和不同实现方式下的误码性能。主要包括了OFDM系统在加性白高斯信道,在加性白高斯信道和多径干扰两种不同信道环境下系统的误码性能,其中后者还研究了系统在有保护间隔与无保护间隔的误码性能比较。在理论分析的基础上,用MATLAB进行仿真,最后做出误码性能的分析和比较。 -This paper has OFDM systems based on OFDM systems introduces the basic principles and the use of the advantages of OFDM technology, and to look towards the future of wireless mobile technology development prospects. In a brief OFDM principles, while focusing on the OFDM system under different channel environments and different modes to achieve the error performance. Mainly include the OFDM system in additive white Gaussian channel, in the additive white Gaussian channel and multi-path interference of two different channel environment, the system BER performance, the latter of which also studied the system in a guard interval and non-protected BER performance comparison interval. The theoretical basis of the analysis, using MATLAB simulation, finally make a bit error performance analysis and comparison.
Platform: | Size: 1953792 | Author: 王斌 | Hits:

[Program docperformance_analysis

Description: Performance Analysis of Channelized Cellular Systems With Dynamic Channel Allocation
Platform: | Size: 584704 | Author: vicky | Hits:

[Program doc1581

Description: Analysis of Transparent Mode IEEE 802.16j System Performance with varying Numbers of Relays and Associated Transmit Power
Platform: | Size: 274432 | Author: vicky | Hits:

[matlab16QAM

Description: 实现AWGN信道16QAM调制、解调及误码率分析-AWGN channel to achieve 16QAM modulation, demodulation and BER Performance Analysis
Platform: | Size: 1024 | Author: Coco | Hits:

[matlab发动机热电发生装置MATLAB性能分析

Description: 发动机热电仿真装置的性能分析,基于MATLAB,将PDF中的数学模型转化为MATLAB里的语言,并求解。(Performance Analysis of Engine Thermoelectric Simulator)
Platform: | Size: 975872 | Author: pandaquery | Hits:
« 12 3 4 5 6 7 8 9 10 ... 34 »

CodeBus www.codebus.net