Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

CSI Instantaneous Linear Spectrum??

Status
Not open for further replies.

Dmitry

Mechanical
Joined
Mar 1, 2001
Messages
27
Location
US
What dose they mean (in CSI) by saying: Instantaneous Linear Spectrum (ILS)?
I have time realization of a signal and its ILS accrued by CSI spectrum analyzer 2400. In order to understand what I get as ILS, I've computed: APS, Linear APS, PSD and Linear PSD. They differ from ILS drasticaly! So what is ILS?

Listings for APS, Linear APS, PSD and Linear PSD:

MySignalFFT=fft(MySignal);
% Ns – sampling frequency
% N – lengths of time realisation

% APS
plot((0:N/2-1)*Ns/N,
(conj(OutputFFT(1:N/2))/N*2.* MySignalFFT(1:N/2)/N*2));
% Linear APS
plot((0:N/2-1)*Ns/N,
sqrt(conj(OutputFFT(1:N/2))/N*2.* MySignalFFT(1:N/2)/N*2));
% PSD
plot((0:N/2-1)*Ns/N,
(conj(OutputFFT(1:N/2))/N*2.* MySignalFFT(1:N/2)/N*2)/(Ns/N));
% Linear PSD
plot((0:N/2-1)*Ns/N,
sqrt(conj(OutputFFT(1:N/2))/N*2.*MySignalFFT(1:N/2)/N*2)/(Ns/N));


Regards,
D.Semenov
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top