Community Profile

photo

Imane Tahar


Last seen: mer än 3 år ago Active since 2020

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(b,h) area = (b*h)/2 end

mer än 3 år ago | 1

Answered
A basic question of matrix indexing can't get a proper output
A = [1:5; 6:10; 11:15; 16:20]; v= A(:,2) A(end,:)= 0

mer än 3 år ago | 0