필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

i have a matrix with positive values, but when im using imshow im getting white plane.Why is it ?

조회 수: 1 (최근 30일)
my matrix have values like
801195.672906465,740500.922136101
and so on.

답변 (1개)

Walter Roberson
Walter Roberson 2017년 9월 24일
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.

이 질문은 마감되었습니다.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by