Signal Processing Toolbox |
Ffrequency and power content using root MUSIC algorithm
Syntax
Description
[w,pow] = rootmusic(x,p)
estimates the frequency content in the time samples of a signal x
, and returns w
, a vector of frequencies in rad/sample, and the corresponding signal power in the vector pow
in dB per rad/sample. The input signal x
is specified either as:
x
represents a separate observation of the signal (for example, each row is one output of an array of sensors, as in array processing), such that x'*x
is an estimate of the correlation matrix
Note
You can use the output of corrmtx to generate such an array x .
|
The second input argument, p
is the number of complex sinusoids in x.
You can specify p
as either:
p
.
p(2)
, the second element of p
, represents a threshold that is multiplied by min, the smallest estimated eigenvalue of the signal's correlation matrix. Eigenvalues below the threshold min*p(2)
are assigned to the noise subspace. In this case, p(1)
specifies the maximum dimension of the signal subspace.
The extra threshold parameter in the second entry in p
provides you more flexibility and control in assigning the noise and signal subspaces.
The length of the vector w
is the computed dimension of the signal subspace. For real-valued input data x
, the length of the corresponding power vector pow
is given by
For complex-valued input data x
, pow
and w
have the same length.
[f,pow] = rootmusic(...,fs)
returns the vector of frequencies
f
calculated
in Hz. You supply the sampling frequency fs
in Hz. If you specify fs
with the
empty vector []
, the sampling frequency defaults to 1 Hz.
[w,pow] = rootmusic(...,'
forces the input argument corr
')
x
to be interpreted as a correlation matrix rather than a matrix of signal data. For this syntax, you must supply a square matrix for x
, and all of its eigenvalues must be nonnegative.
Examples
Find the frequency content in a signal composed of three complex exponentials in noise. Use the modified covariance method to estimate the correlation matrix used by the MUSIC algorithm:
randn('state',1); n=0:99; s = exp(i*pi/2*n)+2*exp(i*pi/4*n)+exp(i*pi/3*n)+randn(1,100); % Estimate correlation matrix using modified covariance method. X=corrmtx(s,12,'mod'); [W,P] = rootmusic(X,3) W = 1.5769 0.7817 1.0561 P = 1.1358 3.9975 1.4102
Algorithm
The MUSIC algorithm used by rootmusic
is the same as that used by pmusic
. The algorithm performs eigenspace analysis of the signal's correlation matrix in order to estimate the signal's frequency content.
The difference between pmusic
and rootmusic
is:
pmusic
returns the pseudospectrum at all frequency samples.
rootmusic
returns the estimated discrete frequency spectrum, along with the corresponding signal power estimates.
rootmusic
is most useful for frequency estimation of signals made up of a sum of sinusoids embedded in additive white Gaussian noise.
Diagnostics
If the input signal, x
is real and an odd number of sinusoids, p
is specified, this error message is displayed
See Also
corrmtx
, peig
, pmusic
, powerest
method of spectrum
, rooteig
, spectrum.music
rooteig | sawtooth |
© 1994-2005 The MathWorks, Inc.