How can I manipulate smithchart properties that can be done manually with propertyeditor?
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
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
Antworten (1)
Joe Wargo
am 24 Feb. 2015
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 Kommentar
Stephen Hughey
am 28 Feb. 2015
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!