msamsami / doa-estimation-music

Estimation of direction of arrivals (DOA) using the MUSIC algorithm
140 stars 44 forks source link

DOA Estimation using the MUSIC algorithm



Introduction

This repository presents a mini project to show how the direction of arrivals (DOA) is estimated using the MUSIC algorithm. MUSIC stands for MUltiple SIgnal Classification. It is a subspace-based algorithm used for estimating the DOA of same-frequency narrowband sources arriving at a sensor array. MUSIC outperforms simple methods such as picking peaks of DFT spectra in the presence of noise when the number of components is known in advance because it exploits knowledge of this number to ignore the noise in its final report.

Code description

In this code, it is assumed that there are M sensors with a sampling frequency of 10^7 Hz and N independent sources that generate narrowband complex exponential signals with a constant frequency of 10^6 Hz and a standard Gaussian amplitude. For simplicity, it is assumed that the sensors form an array and are positioned in a linear fashion, although more complicated array structures are possible.

Background

The script in this repository is the completed answer to a course project for the Linear Algebra course at Shiraz University, which was lectured by Dr. Alireza Masnadi-Shirazi back in the Spring 2017 semester. The project guide, a related paper, and a tutorial are also included.