plotting cardioid and circle in one graph

31 views (last 30 days)
amanina abdul rahman
amanina abdul rahman on 27 Nov 2015
Commented: Raj on 20 Mar 2023
hi. how do i plot the cardioid and the circle in one graph? here's the equation of cardioid=1+cos(t) and cirle=3*cos(t).

Answers (2)

Thorsten
Thorsten on 27 Nov 2015
Edited: Thorsten on 27 Nov 2015
Use polar
theta = linspace(0, 2*pi);
polar(theta, 1+cos(theta))
hold on
polar(theta, 3*cos(theta), 'r')
or if you prefer a Cartesian plot
r = 1+cos(theta);
plot(r.*cos(theta), r.*sin(theta))
hold on
r = 3*cos(theta);
plot(r.*cos(theta), r.*sin(theta), 'r')
axis equal

Sk Rizwan Hossain
Sk Rizwan Hossain on 6 May 2022
r=1+cos(theta)

Categories

Find more on Polar Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!