Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
i have a matrix with positive values, but when im using imshow im getting white plane.Why is it ?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
my matrix have values like
801195.672906465,740500.922136101
and so on.
0 comentarios
Respuestas (1)
Walter Roberson
el 24 de Sept. de 2017
imshow() assumes that arrays of type single() or double() are in the range 0 to 1. Your arrays are not in that range. You should use imshow(TheArrayName, []) if you want the maximum value in the array to match to the last color in your color map and you want the minimum value in the array to match to the first color in your color map.
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!