custom alpha-data in surface plot

7 visualizaciones (últimos 30 días)
Björn
Björn el 18 de Sept. de 2013
Comentada: Björn el 4 de Oct. de 2013
I am plotting multiple surfaces in one figure. Now I want to make the areas of the plot close to zero a transparency-gradient. For example
if z(i,j) >= 0 && z(i,j) <= 0.1
transparancy(i,j) = 1-z(i,j)/0.1;
else
transparancy(i,j) = 0;
end
I tried using the 'alpha' function and the colormap method but didn't succeed. Can anybody help me on my way?

Respuestas (1)

Walter Roberson
Walter Roberson el 18 de Sept. de 2013
Do not use the alpha function: use the AlphaData property of the surface object.
surf(z, 'AlphaData', transparancy)
  1 comentario
Björn
Björn el 4 de Oct. de 2013
I tried this but it doesn't change anything. Do you have another suggestion?

Iniciar sesión para comentar.

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by