Filter löschen
Filter löschen

I want to use ezpolar with line colour, style, width control. Is this possible?

1 Ansicht (letzte 30 Tage)
I want to use ezpolar with line colour, style, width control. Is this possible?

Akzeptierte Antwort

Mike Garrity
Mike Garrity am 12 Mai 2015
Bearbeitet: Mike Garrity am 12 Mai 2015
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)
You can learn more about working with handles to graphics objects starting at this doc page .

Weitere Antworten (0)

Kategorien

Mehr zu Graphics Object Identification finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by