How do I add multiple files to RF Toolbox

2 ビュー (過去 30 日間)
Jim
Jim 2013 年 10 月 30 日
コメント済み: Akila Udage 2020 年 11 月 23 日
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

採用された回答

Mark
Mark 2013 年 10 月 31 日
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 件のコメント
Akila Udage
Akila Udage 2020 年 11 月 23 日
Thank you.
Can i please know how to change the legend names?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMRI についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by