Matlab plot ; How to plot figures like the file attached below
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How to plot figures like this in Matlab
0 Commenti
Risposta accettata
Marco Riani
il 5 Dic 2020
Using function heatmap
3 Commenti
Marco Riani
il 5 Dic 2020
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)
Più risposte (1)
Ameer Hamza
il 5 Dic 2020
See pcolor(): https://www.mathworks.com/help/matlab/ref/pcolor.html or imagesc(): https://www.mathworks.com/help/matlab/ref/imagesc.html
0 Commenti
Vedere anche
Categorie
Scopri di più su Data Distribution Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!