How do I add multiple files to RF Toolbox

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

 Accepted Answer

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 Comment

Thank you.
Can i please know how to change the legend names?

Sign in to comment.

More Answers (0)

Categories

Find more on Data Import and Network Parameters in Help Center and File Exchange

Products

Asked:

Jim
on 30 Oct 2013

Commented:

on 23 Nov 2020

Community Treasure Hunt

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

Start Hunting!