Make NaN values transparent
22 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Walter Roberson
il 5 Apr 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Lighting, Transparency, and Shading in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!