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

16 views (last 30 days)
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.

Answers (1)

Vinod
Vinod on 1 May 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 Comments
Antonio Guillen
Antonio Guillen on 9 Oct 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 on 10 Oct 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.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!