Community Profile

photo

Friday N. Abolorunke


Last seen: 5 months 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计数据

All
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
Write a function that returns triangular part of matrix using loops
function summa = halfsum(A) [m,n] = size(A); for ii = 1:m for jj = 1:n if ii > jj A(ii,jj) = 0 ...

4 years 前 | 0