⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 awgnbase.m

📁 MATLAB-functions used in Space-Time Project Simulation
💻 M
字号:
function [received]=awgnbase(trans,EbN0)%   [received]=awgnbase(trans,EbN0)%%	Output:%	received   - Received baseband signal%   %   trans      - Transmitted baseband signal%   EbN0       - Eb/N0 %   %   Short Theoretical Background for the Function:%%   AWGN baseband channel. Adds complex-valued additive %   white gaussian noise.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%     %%% Function part of simulation for Space-Time%%% coding project, group Grey-2001.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%   Author:     Fredrik Hansson%   Date:       2001-03-28%   Version:    1.0%   Revision (Name & Date):%   1.1         FH 2001-04-01  EbN0 in normal scale (not dB!!!) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%SNR = 2*(10^(EbN0/10));pnorm = 1;               % normalized pulsshape?sigma2 = pnorm * 1/(2*EbN0); % noise variancen = sqrt(sigma2/2) * randn(size(trans)) +...    j * sqrt(sigma2/2) * randn(size(trans)) ;received = trans + n;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -