How to draw a line on a symbolic surface
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rowan Humphreys
el 18 de Nov. de 2021
Comentada: Rowan Humphreys
el 18 de Nov. de 2021
I would really like a line running along the surface below at all points where f1=0. kind of like a contour line in 3d.
syms x1 x2
f1 = x1^2+x2^3-9
fsurf(f1);
0 comentarios
Respuesta aceptada
John D'Errico
el 18 de Nov. de 2021
Editada: John D'Errico
el 18 de Nov. de 2021
syms x1 x2
f1 = x1^2+x2^3-9
fsurf(f1);
hold on
fimplicit(f1,'r')
WTP? :)
Más respuestas (0)
Ver también
Categorías
Más información sobre Surface and Mesh Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!