Area of a triangle

34 visualizaciones (últimos 30 días)
Luffy
Luffy el 14 de Jun. de 2012
Movida: DGM el 21 de Feb. de 2023
Is there a function to find area of triangle,not by using Heron's algorithm.

Respuesta aceptada

Dr. Seis
Dr. Seis el 14 de Jun. de 2012
How about polyarea?
>> x = [0, 0, 4];
>> y = [0, 3, 0];
>> area1 = polyarea(x,y)
area1 =
6
>> area2 = 0.5*3*4
area2 =
6
  5 comentarios
Dr. Seis
Dr. Seis el 22 de Jun. de 2012
I think you would have to do some sort of coordinate transform (to still use the "polyarea" function above), such that all the coordinate values for one of the dimensions (e.g., the z-coordinate) are 0. But it seems using Heron's algorithm would be much easier.
SaN AruL
SaN AruL el 25 de Nov. de 2016
Movida: DGM el 21 de Feb. de 2023
thank you Dr. Seis..........

Iniciar sesión para comentar.

Más respuestas (1)

AYUSH MISHRA
AYUSH MISHRA el 26 de Mayo de 2020
function area=tri_area(b,h,n)
area=0.5*b*h*n;
end
%Here b=base of triangle , h=height of triangle , n=number of triangle
Example
area= tri_area(2,3,5)
area =
15

Categorías

Más información sobre Cartesian Coordinate System Conversion en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by