S
shafe
Guest
Salut à tous Salut à tous quel sera le codage dans matlab pour tracer le graphe de l'équation suivante x + y + z = 1; x ^ 2 + y ^ 2 + z ^ 2 = 1 x ^ 3 + y ^ 3 + z ^ 3 = 1 Merci d'avance
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
claires clc; syms xy, z = inline ('sqrt (x ^ 2 + y ^ 2 - 1)'); ezsurf (z, [0,1,0,1]); figure (2) z = inline ('x + y-1'); ezsurf (z, [0,1,0,1]); figure (3) z = inline ('(x ^ 3 + y ^ 3 - 1) ^ ( 1 / 3) '); ezsurf (z, [0,1,0,1 ]);