How to draw a line on a symbolic surface
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Rowan Humphreys
le 18 Nov 2021
Commenté : Rowan Humphreys
le 18 Nov 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 commentaires
Réponse acceptée
John D'Errico
le 18 Nov 2021
Modifié(e) : John D'Errico
le 18 Nov 2021
syms x1 x2
f1 = x1^2+x2^3-9
fsurf(f1);
hold on
fimplicit(f1,'r')
WTP? :)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!