using MATLAB determine the unit vector normal to 𝐒=𝐱𝟐+𝐲𝟐−𝐳 at point P(1,3,0).

8 visualizaciones (últimos 30 días)
using MATLAB determine the unit vector normal to 𝐒=𝐱𝟐+𝐲𝟐−𝐳 at point P(1,3,0).

Respuesta aceptada

David Hill
David Hill el 27 de Mayo de 2020
syms x y z
s = x^2+y^2-z;
n(x,y,z) = gradient(s, [x, y, z]);
a = eval(n(1,3,0)/norm(n(1,3,0)));

Más respuestas (0)

Categorías

Más información sobre Formula Manipulation and Simplification 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!

Translated by