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);