How do I add multiple files to RF Toolbox
1 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Visualization and Data Export 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!