Double Checking VVF graph

2 views (last 30 days)
Cassandra Meyer
Cassandra Meyer on 20 Feb 2022
Commented: Star Strider on 20 Feb 2022
I have a curve with the parametrizations below and its coming up at two different lines when I graph it. I was going to try to make it a 3D plot with z=0 and it wouldn't let me. Does this look right? I feel like it should not be two separate lines, but I might be overthinking it.
syms t
x = (sqrt(3)*t- sin(t))/2
y = (t + sqrt(3)*sin(t))/2
r = [x y]
fplot(r)

Accepted Answer

Star Strider
Star Strider on 20 Feb 2022
‘... it wouldn't let me.
Of course it will!
You just have to ask it nicely (and ask the correct plotting function)!
syms t
x(t) = (sqrt(3)*t- sin(t))/2
x(t) = 
y(t) = (t + sqrt(3)*sin(t))/2
y(t) = 
z(t) = 0*t
z(t) = 
0
figure
fplot3(x, y, z, [-1 1]*25, 'LineWidth',2)
Make appropriate changes to get the desired result.
.
  2 Comments
Cassandra Meyer
Cassandra Meyer on 20 Feb 2022
OH that makes so much sense thanks so much!!
Star Strider
Star Strider on 20 Feb 2022
As always, my pleasure!

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!