Make NaN values transparent
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi there,
Once again I must ask for your wisdom and guidance :)
Is there anyway to make NaN values transparent. More specifically I'm using the slice function, and then texture mapping with some images. These images have some NaN values, wich i would like do be transparent. Is that possible?
Thanks in advance!
0 comentarios
Respuesta aceptada
Walter Roberson
el 5 de Abr. de 2012
You can set the AlphaData and AlphaDataMapping associated with the surface plot created by slice()
In particular you could set it to
double(~isnan(TheImage))
which would be 0 exactly where there are nan.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Lighting, Transparency, and Shading en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!