how to make a polar plot from 0 to 2 pi

4 Ansichten (letzte 30 Tage)
Hayden O'Neil
Hayden O'Neil am 27 Sep. 2017
Beantwortet: KSSV am 27 Sep. 2017
I'm trying to make a polar plot from 0 to 2pi but I don't know how to code that properly.

Antworten (1)

KSSV
KSSV am 27 Sep. 2017
theta = 0:0.01:2*pi;
rho = sin(2*theta).*cos(2*theta);
polarplot(theta,rho)

Kategorien

Mehr zu Polar Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by