フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

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

1 回表示 (過去 30 日間)
kitty varghese
kitty varghese 2017 年 9 月 24 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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