plotting of polar and Cartesian coordinates at the same time

Is it possible to plot polar and cartesian coordinates overlapping on a single figure?

 Accepted Answer

y = rand(1,360);
plot(linspace(-1,1, numel(y)), y+1)
hold on
plot(cos(theta).*y, sin(theta).*y, 'r')

More Answers (0)

Categories

Products

Asked:

on 14 Oct 2015

Answered:

on 14 Oct 2015

Community Treasure Hunt

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

Start Hunting!