Project 4 looks at the problem of trying to determine the direction from which narrow band electronic signals are arriving at an array of pairs of sensing stations.
The data involves 720 observations of two signals. The data file stores both the complex signal data X and the matrix of true angles THETA measured in degrees. The signal data X has been perturbed by a normally distributed random error with mean 0 and stardard deviation of 1.
To copy the data into MATLAB, use the command
load doadata;
To get the DOA angle of the data X, use the MATLAB command
DOA = asin ( 4 * angle ( X ) / ( 2 * pi )
You can go up one level to the Computational Science Projects page.