Community Profile

photo

Pelden Chodon


Last seen: 3 years ago Active since 2021

Statistics

  • First Answer

View badges

Content Feed

View by

Answered
write a function called tri_area returns the area of a triangle with base b and height h
function [area, tri_area] = tri_area(b,h) ; area = (0.5)*(b)*(h); v = area(:); tri_area = sum(v); end % Test that your fu...

3 years ago | 0