Community Profile

photo

Pelden Chodon


Last seen: 3年弱 前 2021 年からアクティブ

統計

  • First Answer

バッジを表示

Content Feed

表示方法

回答済み
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年弱 前 | 0