资源简介
基于子空间的多重信号分类算法MUSIC,可估计信号的到达角、离开角
代码片段和文件信息
function y=awgn(varargin)
%AWGN Add white Gaussian noise to a signal.
% Y = AWGN(XSNR) adds white Gaussian noise to X. The SNR is in dB.
% The power of X is assumed to be 0 dBW. If X is complex then
% AWGN adds complex noise.
%
% Y = AWGN(XSNRSIGPOWER) when SIGPOWER is numeric it represents
% the signal power in dBW. When SIGPOWER is ‘measured‘ AWGN measures
% the signal power before adding noise.
%
% Y = AWGN(XSNRSIGPOWERS) uses S which is a random stream handle to
% generate random noise samples with RANDN. If S is an integer then
% resets the state of RANDN to S. The latter usage is obsoleted and may
% be removed in a future release. If you want to generate repeateable
% noise samples then provide the handle of a random stream or use reset
% method on the default random stream. Type ‘help RandStream‘ for more
% information.
%
% Y = AWGN(XSNRSIGPOWERSTATE) resets the state of RANDN to STATE.
% This usage is deprecated and may be removed in a future release.
%
% Y = AWGN(... POWERTYPE) specifies the units of SNR and SIGPOWER.
% POWERTYPE can be ‘db‘ or ‘linear‘. If POWERTYPE is ‘db‘ then SNR
% is measured in dB and SIGPOWER is measured in dBW. If POWERTYPE is
% ‘linear‘ then SNR is measured as a ratio and SIGPOWER is measured
% in Watts.
%
% Example 1:
% % To specify the power of X to be 0 dBW and add noise to produce
% % an SNR of 10dB use:
% X = sqrt(2)*sin(0:pi/8:6*pi);
% Y = awgn(X100);
%
% Example 2:
% % To specify the power of X to be 3 Watts and add noise to
% % produce a linear SNR of 4 use:
% X = sqrt(2)*sin(0:pi/8:6*pi);
% Y = awgn(X43‘linear‘);
%
% Example 3:
% % To cause AWGN to measure the power of X and add noise to
% % produce a linear SNR of 4 use:
% X = sqrt(2)*sin(0:pi/8:6*pi);
% Y = awgn(X4‘measured‘‘linear‘);
%
% Example 4:
% % To specify the power of X to be 0 dBW add noise to produce
% % an SNR of 10dB and utilize a local random stream use:
% S = RandStream(‘mt19937ar‘‘seed‘5489);
% X = sqrt(2)*sin(0:pi/8:6*pi);
% Y = awgn(X100S);
%
% Example 5:
% % To specify the power of X to be 0 dBW add noise to produce
% % an SNR of 10dB and produce reproducible results use:
% reset(RandStream.getDefaultStream)
% X = sqrt(2)*sin(0:pi/8:6*pi);
% Y = awgn(X100S);
%
%
% See also WGN RANDN RandStream/RANDN and BSC.
% Copyright 1996-2008 The MathWorks Inc.
% $Revision: 1.9.4.7 $ $Date: 2009/01/05 17:45:01 $
% --- Initial checks
error(nargchk(25nargin‘struct‘));
% --- Value set indicators (used for the string flags)
pModeSet = 0;
measModeSet = 0;
% --- Set default values
sigPower = 0;
pMode = ‘db‘;
measMode = ‘specify‘;
state = [];
% --- Placeholder for the signature string
sigSt
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1152 2013-09-03 21:23 doa_music.m
文件 6522 2013-09-03 16:19 wgn.m
文件 8109 2013-09-03 08:17 awgn.m
- 上一篇:labview写的贪吃蛇游戏
- 下一篇:旋转不变算法ESPRIT
相关资源
- 谱估计:capon和music算法比较
- 音乐空间Music(微信小程序源代码)
- MusicToolsv1.4.exe
- MUSIC算法程序
- 几种常用music算法
- music.zip
- 利用MUSIC算法实现基于圆阵的二维测角
- 网易云音乐缓存转换MP3
- music算法的doa谱估计
- 单基地MIMO雷达经典MUSIC算法
- 微信小程序开发的音乐播放器wx_mymu
- music_source.zip
- NeteaseMusicTrans.rar
- DOA估计经典算法
- MUSIC算法的改进
- 51Music(www.greenxf.com).zip
- 多种传统DOA估计算法MUSIC,Capon,ESP
- 基于MUSIC算法的DOA估计
- 基于矩阵特征值分解谱分析(music等等
- MUSIC算法估计功率谱
-
Arduino-esp32_MusicPla
yer.zip - 基于ESPRIT和Root-MUSIC算法的极化MIMO雷达
- 均匀线阵DOA估计 MUSIC算法和ESPRIT算法
- MUSIC算法求根MUSIC算法还有波束形成算
- AVR MEGA16 MUSIC+LCD 滚屏菜单程序+PR
- 自适应APES算法与MUSIC算法的RMSE对比
评论
共有 条评论