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

20 次查看(过去 30 天)
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.

回答(1 个)

Vinod
Vinod 2017-5-1
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 个评论
Antonio Guillen
Antonio Guillen 2017-10-9
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 2017-10-10
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.

请先登录,再进行评论。

Community Treasure Hunt

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

Start Hunting!

Translated by