how to set anti diagonal part of matrix with zero value elements ?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ajeet verma
el 8 de Mzo. de 2017
Comentada: Walter Roberson
el 9 de Mzo. de 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 comentarios
Respuesta aceptada
Nicolai Sanders
el 8 de Mzo. de 2017
I think this might do what you need.
m=256; n=256; a=ones(m,n); u=flip(triu(a)); imshow(u);
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!