Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
どういうわけか、それは図の赤い領域をプロットしています。色がついている島だけが気になります。
http://img528.imageshack.us/img528/506/2bc9e702042a46369c7631b.png
の割り当てはdayh99次のようになります。
dayh99
dayh99 = zeros(length(fname),610,620);
次に、ループ内のその範囲外の値で埋めようとします。
dayh99(i,240:850, 130:750) = ...
0両方の次元のインデックスで塗りつぶしを開始したいと思います。これにより、プロットの「赤い」領域がなくなります。
0
ループでこれを試して、以下を埋めてくださいdayh00:
dayh00
dayh99(i,:,:) = tmp(240:850,130:750);