matlab中如何实现用图像显示矩阵

2024-11-02 14:33:20
推荐回答(2个)
回答1:

D6 = randint(361,352,[0 255]);
imagesc(D6);

回答2:

试试
imshow(uint8(D6));
colormap(jet);