Plotting parabolas and curves on MATLAB

6 views (last 30 days)
No Ga
No Ga on 16 Mar 2015
Answered: dpb on 16 Mar 2015
I want to graph the parabola r(t) = ti + t^2j for −2 ≤ t ≤ 2 and the curve r(t) = ti + t^2/2j + t^3/3k for −2 ≤ t ≤ 2.
I've never done MATLAB before and am very confused as to how to get this done.

Answers (1)

dpb
dpb on 16 Mar 2015
Consider i, j, k as x, y, z and then look at
doc meshgrid doc ndgrid
with new eyes.
For starters
>> t=meshgrid(-2:2,-2:2)
t =
-2 -1 0 1 2
-2 -1 0 1 2
-2 -1 0 1 2
-2 -1 0 1 2
-2 -1 0 1 2
>> r1=t+t.^2;
>> surf(-2:2,-2:2,r1)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!