How to capture a spectrum from a R&S spectrum analyzer and find its maximum?

20 visualizaciones (últimos 30 días)
How can I communicate with a Rohde & Schwarz ZVL spectrum analyzer and capture the spectrum on the analyzer screen from matlab?
Then I want to get the frequency at which the maximum value is found.

Respuestas (1)

Vinod
Vinod el 1 de Mayo de 2017
You could start by modifying this example. Specifically, you'd have to modify the SCPI commands to match those for the ZVL, which are documented in the manual for the instrument.
If you are able to get this working, consider posting your code on MATLAB Central File Exchange so others may also learn from your example.
  2 comentarios
Antonio Guillen
Antonio Guillen el 9 de Oct. de 2017
Hi, in the example you tell me not to acquire the signal as a spectrum analyzer, it only leaves it configured.
What command would I have to execute to capture the analyzer screen when I configured with the parameters of the initial frequency, final frequency, bandwidth ...?
Many thanks!
Vinod
Vinod el 10 de Oct. de 2017
These commands get the data on the Keysight instrument. You might find similar commands for the R&S box:
% Trigger the instrument and initiate measurement
fprintf(signalAnalyzerObject,'*TRG');
fprintf(signalAnalyzerObject,':INITiate:WAVeform');
% wait till measure operation is complete
measureComplete = query(signalAnalyzerObject,'*OPC?');
% Read the IQ data
fprintf(signalAnalyzerObject,':READ:WAV0?');
data = binblockread(signalAnalyzerObject,'float');
Please look in the R&S instrument manual for the commands.

Iniciar sesión para comentar.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by