Plot the graphs of the following parametric equations using ezplot

2 views (last 30 days)
could anybody please help me with this question? i got it easily with just plot but how do i attempt it with ezplot?

Answers (1)

darova
darova on 15 Apr 2020
See this madness
syms r t
r = sin(t/2);
x = r*cos(t);
y = r*sin(t);
ezplot(x,y,[0 2*pi])
  2 Comments
Robin Morgan
Robin Morgan on 15 Apr 2020
could you please explain why you took r = (sint/2) and why those limits?
darova
darova on 15 Apr 2020
It's just an example. You should put there your values. Not mine

Sign in to comment.

Categories

Find more on Mathematics and Optimization in Help Center and File Exchange

Tags

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!