how to make a polar plot from 0 to 2 pi

조회 수: 5 (최근 30일)
Hayden O'Neil
Hayden O'Neil 2017년 9월 27일
답변: KSSV 2017년 9월 27일
I'm trying to make a polar plot from 0 to 2pi but I don't know how to code that properly.

답변 (1개)

KSSV
KSSV 2017년 9월 27일
theta = 0:0.01:2*pi;
rho = sin(2*theta).*cos(2*theta);
polarplot(theta,rho)

카테고리

Help CenterFile Exchange에서 Polar Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by