Changing the colour of a plot
Afficher commentaires plus anciens
Hi,
Could anybody tell me how I can get this plot more colourful? It is primarily blue and I can't change it using the colour map because the interval are not small enough.
thank you
5 commentaires
Image Analyst
le 12 Déc 2012
Link doesn't work.
John
le 12 Déc 2012
Walter Roberson
le 12 Déc 2012
Is that a surf() plot ?
John
le 12 Déc 2012
Réponses (1)
load Data
S = surf(x1, y1, z1); % Original to compare
figure
S2 = surf(x1, y1, z1);
set(S2,'facecolor','interp','CData',z1*1e3,'cdatam','direct')
set(gcf,'colormap',jet(20)) % You can play around with this.
1 commentaire
John
le 12 Déc 2012
Catégories
En savoir plus sur Creating, Deleting, and Querying Graphics Objects dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!