Info
此问题已关闭。 请重新打开它进行编辑或回答。
How can I manipulate smithchart properties that can be done manually with propertyeditor?
1 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(1 个)
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 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!