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!