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中,我们可以用pcolor来用颜色来表示数据的大小。我正在尝试以下数据
A=[1:10; 16:25; 86:95]; pcolor(A);
它只显示两行。为什么会这样以及如何显示所有这三个数据集?谢谢。
来自pcolor的文档
在默认着色模式 'faceted' 中,每个单元格都有一个恒定的颜色,并且不使用 C 的最后一行和最后一列。
改用 imagesc
imagesc(A);