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。我有一个 1024x768 矩阵(显然它映射了一个图像),我在每个位置存储了为特定像素计算的误差(解释起来很复杂......基本上我对每个像素进行一些计算并将这些计算的结果存储在矩阵内的对应位置)...
我需要创建一个错误很高的红色图形和错误很低的蓝色图形,可能会创建 1024x768 图像。是否可以?如果是这样,我该怎么做?
谢谢
使用 IMAGESC 怎么样?
imagesc(yourmatrix)
默认jet颜色图将为您提供所需的颜色。或者您可以将颜色图更改为其他内容。
jet
colormap(redbluecmap)