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.
我必须用 MATLAB 创建一个地毯图(或光栅图)。该图表示一年中每小时的用电量。
在我的实际实现中,我有一个包含消耗值的 amxn 矩阵(m 是一天中的小时数,n 是一年中的天数)。为了获得地毯图,我使用了surf功能设置view(0,-90)。
surf
view(0,-90)
问题是 MATLAB 用与围绕该“单元”的 4 个消耗值的插值相关的颜色表示表面的每个“单元”,而我需要表面的每个单元表示矩阵的单个值。
有没有办法用 MATLAB 获得我需要的东西?
surf用于制作 3 维曲面图。
您想要一个二维热图 - 尝试查看 和 的help imagesc输出help image。
help imagesc
help image