Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How can I manipulate smithchart properties that can be done manually with propertyeditor?

1 回表示 (過去 30 日間)
Stephen Hughey
Stephen Hughey 2015 年 2 月 22 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Initially, I would like to simply change the color and width of the individual data series programmatically. Note: It does not appear that the color order works in a way I expected since:
smithchart(s11(:));
hold on;
smithchart(s22(:));
for the two data sets, s11 and s22 plots in blue for both.
Any insight would be appreciated.
Steve

回答 (1 件)

Joe Wargo
Joe Wargo 2015 年 2 月 24 日
Hey Steve,
This may not be your optimal solution, but try this as a workaround:
h1 = smithchart(s11(:));
hold on
h2 = smithchart(s22(:));
set(h2,'Color','r')
I hope that helps!
Joe
  1 件のコメント
Stephen Hughey
Stephen Hughey 2015 年 2 月 28 日
Joe,
Thanks! That did the job for my immediate issue. I appreciate you being so kind to have taken your time to respond. I had tried all kinds of things without success except for the manual use of the propertyeditor.
Steve

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by