Community Profile

photo

oren Tadmor


Active since 2014

Followers: 0   Following: 0

Message

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Which MATLAB function can remove the diagonal elements of a NxN matrix
remove_diagonal = @(t)reshape(t(~diag(ones(1,size(t, 1)))), size(t)-[1 0]); So : >> m = magic(5) m = ...

10 years ago | 1