Community Profile

photo

Imane Tahar


Last seen: 3年以上 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

  • First Answer

バッジを表示

Feeds

表示方法

回答済み
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

3年以上 前 | 1

回答済み
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

3年以上 前 | 0