Feeds
답변 있음
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...
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...
4년 초과 전 | 0
