Triangle area with two vectors
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mohammed Saeed
am 7 Dez. 2019
Kommentiert: asdsad Zhang
am 16 Aug. 2022
Write a function that returns the area of the triangle formed by the vectors u=[2 3 4] and v=[1 -3 -1]
0 Kommentare
Akzeptierte Antwort
David Hill
am 7 Dez. 2019
function Area = TriVecArea(u,v)
Area = .5*norm(cross(u,v));
end
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Array and Matrix Mathematics finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!