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 CenterFile Exchange에서 MRI에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by