Welcome![Sign In][Sign Up]
Location:
Search - music algorithm matlab code

Search list

[matlabMINNORM

Description: mini Norm算法Matlab代码, DOA方向估计中最常用最简单的算法之一-mini Norm algorithm Matlab code, DOA direction of the most commonly used estimate the simplest algorithm
Platform: | Size: 1024 | Author: Frankie | Hits:

[matlabRoot-MUSIC

Description: 信号与信息处理——阵列信号处理DOA估计的matlab算法,这是求根music算法的源代码,非常有用的代码-Signal and information processing- array signal processing matlab algorithm for DOA estimation, this is roots music algorithm source code, very useful code
Platform: | Size: 1024 | Author: 彭华 | Hits:

[matlabMUSICDemo

Description: matlab code for direction finding algorithm of MUSIC
Platform: | Size: 1024 | Author: dingjun | Hits:

[matlabmusic

Description: 阵列天线的DOA估计MUSIC算法,只有几行简单的代码-DOA estimate the array antenna MUSIC algorithm, only a few lines of simple code
Platform: | Size: 1024 | Author: zyshun | Hits:

[matlabSMOOTHNESS_MUSIC

Description: 含有前向空间平滑、经典MUSIC算法、TOEPLITZ算法进行DOA估计的MATLAB源代码。-Contained prior to spatial smoothing, classical MUSIC algorithm, TOEPLITZ algorithm DOA estimation MATLAB source code.
Platform: | Size: 3072 | Author: 王充 | Hits:

[matlabmusic

Description: 均匀线阵的MUSIC算法MATLAB仿真 需要的下载共享哦-ULA MATLAB simulation of the MUSIC algorithm needs to download shared Oh
Platform: | Size: 1024 | Author: tjp | Hits:

[Othercode

Description: ar模型 bt算法 ls rls lms music等数字信号处理的源代码-ar model bt algorithm ls rls lms music and other digital signal processing of the source code
Platform: | Size: 4096 | Author: 张罗 | Hits:

[Embeded-SCM DevelopGUI

Description: Description The MUSIC algorithm, proposed by Schmidt, first estimates a basis for the noise subspace and then determines the peaks the associated angles provide the DOA estimates. The MATLAB code for the MUSIC algorithm is sampled by creating an array of steering vectors corresponding to the angles in the vector angles. -Description The MUSIC algorithm, proposed by Schmidt, first estimates a basis for the noise subspace and then determines the peaks the associated angles provide the DOA estimates. The MATLAB code for the MUSIC algorithm is sampled by creating an array of steering vectors corresponding to the angles in the vector angles.
Platform: | Size: 8192 | Author: 何冰 | Hits:

[matlabMUSIC

Description: matlab code to calculate the MUSIC algorithm(DOA algorithm)
Platform: | Size: 1024 | Author: kiran | Hits:

[matlabMUSICDemo

Description: this the matlab code by using the music algorithm for finding the direction of arrival of the smart antennas -this is the matlab code by using the music algorithm for finding the direction of arrival of the smart antennas
Platform: | Size: 1024 | Author: raki | Hits:

[Speech/Voice recognition/combineMUSIC

Description: 基于麦克风阵列的声源定位一维music算法源代码-Based on the microphone array beamformer one-dimensional music algorithm source code
Platform: | Size: 25379840 | Author: wanghao | Hits:

[assembly languagecode-music

Description: matlab code signal processing and music algorithm-matlab code signal processing and music algorithm
Platform: | Size: 1024 | Author: d | Hits:

[matlabmusic

Description: 上传的MATLAB代码是music算法在线阵和空间任意阵列下的形式,也可以将两者进行对比。-Upload music algorithm MATLAB code is any line array and space under the form of an array, you can also compare the two.
Platform: | Size: 2048 | Author: 刘书 | Hits:

[AlgorithmMUSIC

Description: MUSIC算法的matlab代码,可供仿真-MUSIC algorithm matlab code for simulation
Platform: | Size: 8192 | Author: 张俊 | Hits:

[matlabMUSIC算法MATLAB程序

Description: 一般的music算法和求根music算法的详细步骤和代码,测试可用(Detailed steps and code root MUSIC algorithm, the test can be used)
Platform: | Size: 1024 | Author: 冠逸儿 | Hits:

[matlabmusic algorithm

Description: matlab code for MUSIC Algorithm
Platform: | Size: 10240 | Author: kamuntu | Hits:

[matlabMUSIC through C and MATLAB

Description: MUSIC Algorithm in Matlab and c++ source
Platform: | Size: 296960 | Author: xl453 | Hits:

[GPS developmatlab code

Description: 无线传感器网络技术仿真算法,包括aoa,doa,tdoa等matlab代码仿真(Wireless sensor network technology simulation algorithm, including AOA, DOA, TDOA and other matlab code simulation.)
Platform: | Size: 12288 | Author: WAusar | Hits:

[Othermusic

Description: MUSIC 算法MATLAB仿真源代码 clc clear all format long %将数据显示为长整型科学计数 N=200;%快拍数 doa=[20 60]/180*pi; %信号到达角 w=[pi/4 pi/3]';%信号频率 M=10;%阵元数 P=length(w); %信号个数 lambda=150;%波长 d=lambda/2;%阵元间距 snr=20;%信噪比 B=zeros(P,M); %创建一个P行M列的0矩阵 for k=1:P B(k,:)=exp(-j*2*pi*d*sin(doa(k))/lambda*[0:M-1]); %矩阵赋值 end B=B'; xx=2*exp(j*(w*[1:N])); %仿真信号 x=B*xx; x=x+awgn(x,snr);%加入高斯白噪声 R=x*x'; %数据协方差矩阵 [U,V]=eig(R); %求R的特征值和特征向量 UU=U(:,1:M-P); %估计噪声子空间 theta=-90:0.5:90; %%谱峰搜索 for ii=1:length(theta) AA=zeros(1,length(M)); for jj=0:M-1 AA(1+jj)=exp(-j*2*jj*pi*d*sin(theta(ii)/180*pi)/lambda); end WW=AA*UU*UU'*AA'; Pmusic(ii)=abs(1/ WW); end Pmusic=10*log10(Pmusic/max(Pmusic)); %空间谱函数 plot(theta,Pmusic,'-k') xlabel('角度 \theta/degree') ylabel('谱函数P(\theta) /dB') title('MUSIC算法的DOA估计谱') grid on(MUSIC algorithm MATLAB simulation source code)
Platform: | Size: 15360 | Author: 冠华 | Hits:

[matlabMUSIC算法

Description: 阵列信号处理MUSIC算法MATLAB代码,本代码基于线性一维阵列编写,包括MUSIC、MUM、RootMUSIC、SMUSIC。代码为学习过程中手动编写调试,适合初学者学习使用,代码可直接运行或者移植。(Array signal processing MUSIC algorithm MATLAB code, the code is based on linear one-dimensional array, including MUSIC, MUM, RootMUSIC, SMUSIC. Code for the learning process manual debugging, suitable for beginners to learn to use, the code can be directly run or transplant.)
Platform: | Size: 4096 | Author: 脚塔飞龙 | Hits:
« 12 3 4 5 6 »

CodeBus www.codebus.net