How to make fsurf a solid colored surface with no shade? and make the surface tranparent.

11 次查看(过去 30 天)
I am using fsurf to plot a surface. I wana make the whole surface a solid color and want to make the surface transparent. How can I do that?
figure
syms x1 x2
fsurf((B(1)*x1+B(2)*x2+b(1))/-B(3),'EdgeColor','none')

采纳的回答

Mehmed Saad
Mehmed Saad 2020-5-4
By default FaceColor is set to interp. Change it to your favourite color.
For tranparency use FaceAlpha
figure
syms x1 x2
fsurf((B(1)*x1+B(2)*x2+b(1))/-B(3),'EdgeColor','none',...
'FaceColor','r','FaceAlpha',0.5);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by