Borrar filtros
Borrar filtros

How to plot gradient bar in MATLAB

3 visualizaciones (últimos 30 días)
Kim
Kim el 28 de Feb. de 2017
Respondida: KSSV el 28 de Feb. de 2017
How to draw the above gradient bar?

Respuesta aceptada

KSSV
KSSV el 28 de Feb. de 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)

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by