Borrar filtros
Borrar filtros

Double Checking VVF graph

2 visualizaciones (últimos 30 días)
Cassandra Meyer
Cassandra Meyer el 20 de Feb. de 2022
Comentada: Star Strider el 20 de Feb. de 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)

Respuesta aceptada

Star Strider
Star Strider el 20 de Feb. de 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 comentarios
Cassandra Meyer
Cassandra Meyer el 20 de Feb. de 2022
OH that makes so much sense thanks so much!!
Star Strider
Star Strider el 20 de Feb. de 2022
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by