资源简介

阵列信号处理算法MATLAB常用程序,包括常用的AR,MUSIC,ESPRIT,GMUSIC程序及性能比较分析,很详细

资源截图

代码片段和文件信息

function phi = argamse(gammaaL)  
% generates L samples of an ARMA spectral density function phi
% from the ARMA coefficients.
%
% phi = argamse(gammaaL);  
%     gamma -> the spectral density numerator coefficient vector 
%              [gamma(0)... gamma(m)]^T
%     a     -> the AR coefficient vector (including the leading ‘1‘)
%     phi   <- the spectral density at frequencies 0 2pi/L ... 2pi*(L-1)/L

% Copyright 1996 by R. Moses
a=a(:);  gamma=gamma(:);
m=length(gamma)-1;
H=freqz(1aL‘whole‘);
num = real(fft([gamma;zeros(L-2*m-11);conj(gamma(m+1:-1:2))]));
phi = num.*(abs(H).^2);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    .CA....       618  2010-03-22 13:18  阵列处理算法常用程序\AR\argamse.m

    .CA....      1090  2010-01-03 12:24  阵列处理算法常用程序\AR\armaorder.m

    .CA....       954  2010-01-03 12:24  阵列处理算法常用程序\AR\lsar.m

    .CA....      1040  2010-01-03 12:24  阵列处理算法常用程序\AR\lsarma.m

    .CA....       222  2010-01-03 12:24  阵列处理算法常用程序\AR\myprogramme.m

    .CA....      1669  2010-01-03 12:24  阵列处理算法常用程序\AR\mywarma.m

    .CA....       854  2010-01-03 12:24  阵列处理算法常用程序\AR\yulewalker.m

    .CA....      1307  2010-01-03 12:24  阵列处理算法常用程序\ESPRIT\TAM算法\TAM.m

    .CA....      9096  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\几种ESPRIT算法性能分析\esprit_rmse_snr.m

    .CA....      4715  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\几种ESPRIT算法性能分析\esprit_rmse_zhenyuan.m

    .CA....    497708  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\几种ESPRIT算法性能分析\LS_ESPRIT_snr_rmse.mat

    .CA....   1601958  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\几种ESPRIT算法性能分析\RB_esprit_snr_rmse.mat

    .CA....   1346930  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\几种ESPRIT算法性能分析\resprit_snr_rmse.mat

    .CA....    497063  2010-01-03 12:24  阵列处理算法常用程序\ESPRIT\几种ESPRIT算法性能分析\TAM_snr_rmse.mat

    .CA....    498611  2010-01-03 12:24  阵列处理算法常用程序\ESPRIT\几种ESPRIT算法性能分析\TLS_ESPRIT_snr_rmse.mat

    .CA....     12376  2010-01-03 12:24  阵列处理算法常用程序\ESPRIT\几种ESPRIT算法性能分析\untitled.fig

    .CA....     42239  2010-01-03 12:24  阵列处理算法常用程序\ESPRIT\几种ESPRIT算法性能分析\实验图像.jpg

    .CA....      2692  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\实值波束空间ESPRIT算法\RB_ESPRIT.m

    .CA....      1906  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\实值空间ESPRIT算法\R_ESPRIT.m

    .CA....      1473  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\总体最小二乘ESPRIT算法\TLS_esprit.m

    .CA....      1194  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\最小二乘ESPRIT算法\LS_esprit.asv

    .CA....      1216  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\最小二乘ESPRIT算法\LS_esprit.m

    .CA....      1710  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\矩阵束的ESPRIT算法\matrix_esprit.asv

    .CA....      1367  2010-01-03 12:23  阵列处理算法常用程序\ESPRIT\矩阵束的ESPRIT算法\matrix_esprit.m

    .CA....      6498  2010-01-03 12:22  阵列处理算法常用程序\GMUSIC\2.fig

    .CA....       188  2010-01-03 12:22  阵列处理算法常用程序\GMUSIC\eigmsort.m

    .CA....       320  2010-01-03 12:22  阵列处理算法常用程序\GMUSIC\eigsort.m

    .CA....   1302519  2010-01-03 12:22  阵列处理算法常用程序\GMUSIC\Modified Subspace Algorithms for DOA Estimation With Large Arrays.pdf

    .CA....       134  2010-01-03 12:22  阵列处理算法常用程序\GMUSIC\myfun.m

    .CA....      2839  2010-01-03 12:22  阵列处理算法常用程序\GMUSIC\pickpeak.m

............此处省略93个文件信息

评论

共有 条评论