For 3D surface plots, do you like the command, 'shading interp'?
18 次查看(过去 30 天)
显示 更早的评论
Hi there!
For 3D surface plots, do you like the command, 'shading interp'? When I use it, I notice that the color variation on the surface is quite smooth, with the faint lines that typically show the cross sections of the surface not visible anymore. However, I'm not sure that this is a good thing.
Thanks in advance,
0 个评论
采纳的回答
Star Strider
2025-1-6
There are a few options that you can experiment with —
[X,Y] = ndgrid(-5:0.5:5);
Z = exp(-(X.^2 + Y.^2)/10);
figure
surf(X, Y, Z)
colormap(turbo)
title('Original')
figure
surf(X, Y, Z)
colormap(turbo)
shading('interp')
title('shading(''interp'')')
figure
surf(X, Y, Z, FaceColor='interp')
colormap(turbo)
title('FaceColor=''interp''')
figure
surf(X, Y, Z, EdgeColor='interp')
colormap(turbo)
title('EdgeColor=''interp''')
figure
surf(X, Y, Z, FaceColor='interp', EdgeColor='interp')
colormap(turbo)
title('FaceColor=''interp'', EdgeColor=''interp''')
.
4 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




