How do I label pcolor y and x axes please
18 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How do i label pcolor axes please
0 commentaires
Réponses (1)
Walter Roberson
le 3 Déc 2020
img = sort(randi([0 255], 240, 320, 'uint8'));
subplot(1,2,1); imagesc(img); colormap(hot); xlabel('x'); ylabel('y');
subplot(1,2,2); p = pcolor(img); p.EdgeColor = 'none'; colormap(hot); xlabel('x'); ylabel('y');
(The two have diffrent defaults about which direction Y increases.)
0 commentaires
Voir également
Catégories
En savoir plus sur Labels and Annotations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!