how to set anti diagonal part of matrix with zero value elements ?
2 views (last 30 days)
Show older comments
ajeet verma
on 8 Mar 2017
Commented: Walter Roberson
on 9 Mar 2017
i know that how to set diagonal part of matrix to zero, for that we have a code m=256; n=256; a=ones(m,n); u=triu(a); imshow(u);
but in case of anti diagonal what will be code?
0 Comments
Accepted Answer
Nicolai Sanders
on 8 Mar 2017
I think this might do what you need.
m=256; n=256; a=ones(m,n); u=flip(triu(a)); imshow(u);
2 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!