I want to set a color map for each subplot.
5 ビュー (過去 30 日間)
表示 古いコメント
Hello ... Thank you for everything.
What I want to do is to separate the color map for each subplot.
For example, I'd really like to have 'jet' for subplot(2,1,1) and 'parula' for subplot(2,1,2).
The graphs are drawn by calling the drownow function, but they are unified to the last set of colormaps.
Is this a problem because I don't understand the specification well?
Can you please tell me how to do this?
0 件のコメント
採用された回答
Bjorn Gustavsson
2021 年 2 月 2 日
You have to set the colormap of the axes explicitly:
subplot(1,2,1)
imagesc(peaks(123)) % Something more interesting
axis tight,axis ij
colormap(jet)
subplot(1,2,2)
imagesc
axis tight,axis ij
set(gca,'Colormap',parula)
HTH
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!