I want to use ezpolar with line colour, style, width control. Is this possible?
1 回表示 (過去 30 日間)
古いコメントを表示
Seetha Rama Raju Sanapala
2015 年 5 月 12 日
編集済み: Mike Garrity
2015 年 5 月 12 日
I want to use ezpolar with line colour, style, width control. Is this possible?
0 件のコメント
採用された回答
Mike Garrity
2015 年 5 月 12 日
編集済み: Mike Garrity
2015 年 5 月 12 日
The ezpolar command has a return argument. This is a handle to the graphics object it creates. You can set properties on that:
h = ezpolar('sin(2*t).*cos(3*t)',[0 pi])
h.LineStyle = ':'
h.Color = 'green'
h.LineWidth = 8
Note that the "dot notation" syntax was introduced in 2014b. The following version would work in earlier releases too.
h = ezpolar('sin(2*t).*cos(3*t)',[0 pi])
set(h,'LineStyle', ':', 'Color', 'green', 'LineWidth', 8)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Multirate Signal Processing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!