Azzera filtri
Azzera filtri

How can I add a diagonal gradient and corresponding colorbar to a plot?

5 visualizzazioni (ultimi 30 giorni)
This is what I'd like to create with my own data, how can I add that gradient and colorbar to my plot

Risposta accettata

darova
darova il 23 Set 2019
An example:
[X,Y] = meshgrid(1:0.1:3);
Z = X+Y;
pcolor(X,Y,Z)
shading interp
colorbar('Location','NorthOutside')
You can also create your own colormap

Più risposte (1)

Jalaj Gambhir
Jalaj Gambhir il 20 Set 2019
Hi, colormap's can be used to do so. Look at an example here.

Categorie

Scopri di più su Colormaps in Help Center e File Exchange

Prodotti


Release

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by