Matlab plot ; How to plot figures like the file attached below
1 回表示 (過去 30 日間)
古いコメントを表示
How to plot figures like this in Matlab
0 件のコメント
採用された回答
Marco Riani
2020 年 12 月 5 日
Using function heatmap
3 件のコメント
Marco Riani
2020 年 12 月 5 日
Suppose that h is the handle of your heatmap that is
h = heatmap(xvalues,yvalues,cdata);
h.FontSize changes the FontSize of all xlabels, ylabels and the numbers inside the heatmap.
In order to change the FontSize of a particular label it seems to me it is necessary to use Latex instruction \fontsize (see screenshot below)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/447238/image.jpeg)
その他の回答 (1 件)
Ameer Hamza
2020 年 12 月 5 日
See pcolor(): https://www.mathworks.com/help/matlab/ref/pcolor.html or imagesc(): https://www.mathworks.com/help/matlab/ref/imagesc.html
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Distribution Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!