Triangle area with two vectors

Write a function that returns the area of the triangle formed by the vectors u=[2 3 4] and v=[1 -3 -1]

 Risposta accettata

function Area = TriVecArea(u,v)
Area = .5*norm(cross(u,v));
end

2 Commenti

Thank you so much i already solve it
Nice answer. Thank you

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by