how can i plot this equation?

3 views (last 30 days)
Haytham Ali
Haytham Ali on 17 Dec 2020
Edited: Walter Roberson on 17 Dec 2020
  2 Comments
Dyuman Joshi
Dyuman Joshi on 17 Dec 2020
what is the funtionc h(t)?
Haytham Ali
Haytham Ali on 17 Dec 2020
radius function

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 17 Dec 2020
Edited: Walter Roberson on 17 Dec 2020
h = @(t) [-t.^3-3*t+1, -asin(t)];
s = @(t) arrayfun(@(T) h(T) * [cos(2*pi*T) sin(2*pi*T)].', t);
fplot(s, [0 1])

Categories

Find more on MATLAB 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!