Filter löschen
Filter löschen

How do I add multiple files to RF Toolbox

2 Ansichten (letzte 30 Tage)
Jim
Jim am 30 Okt. 2013
Kommentiert: Akila Udage am 23 Nov. 2020
I am trying to plot lab data from a network analyzer. I want to use RF Toolbox. How do I include data from multiple data files on one plot using RF Toolbox

Akzeptierte Antwort

Mark
Mark am 31 Okt. 2013
Is the lab data in Touchstone file format? If so, then
>> S1 = sparameters(file1.s2p);
>> rfplot(S1)
>> hold on
>> S2 = sparameters(file2.s2p);
>> rfplot(S2)
>> S3 = sparameters(file3.s2p);
>> rfplot(S3)
...
will work.
Best wishes,
Mark
  1 Kommentar
Akila Udage
Akila Udage am 23 Nov. 2020
Thank you.
Can i please know how to change the legend names?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MRI finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by