Effacer les filtres
Effacer les filtres

How to plot gradient bar in MATLAB

3 vues (au cours des 30 derniers jours)
Kim
Kim le 28 Fév 2017
Réponse apportée : KSSV le 28 Fév 2017
How to draw the above gradient bar?

Réponse acceptée

KSSV
KSSV le 28 Fév 2017
x = [0.5 1 1.5] ;
y = linspace(0,200) ;
[X,Y] = meshgrid(x,y) ;
Z = X+Y ;
figure(1)
surf(X,Y,Z) ;
colormap(jet) ;
shading interp ;
view(2)
x = [0.5 1 1.5] ;
y = linspace(0,200) ;
y(y>80 & y<120) = NaN ;
[X,Y] = meshgrid(x,y) ;
Z = X+Y ;
figure(2)
surf(X,Y,Z) ;
colormap(jet) ;
shading interp ;
view(2)

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by