Transparency causes nonsmooth lines
Show older comments
When I set transparency in the figure, the original smooth line becomes nonsmooth.
[x,y] = meshgrid(-2:.2:2);
z = x.*exp(-x.^2-y.^2);
a = gradient(z);
figure; surf(x,y,z,'AlphaData',a,'FaceAlpha','flat','FaceColor','blue');
figure; surf(x,y,z)
Accepted Answer
More Answers (1)
Indrajit Wadgaonkar
on 10 Aug 2021
Edited: Indrajit Wadgaonkar
on 10 Aug 2021
0 votes
Did this issue get resolved? What is the solution if I need transparency as well as smooth lines?
Categories
Find more on Spline Postprocessing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!