Surfplot with surface color as a function of gradient (slope)

37 次查看(过去 30 天)
Hi,
I would like to plot a surface plot, where i would like to vary the surface color based on the gradient of z instead of its magnitude. Is there a way to do it?
Thanks and Regards

采纳的回答

Karthik  Vemireddy
编辑:Karthik Vemireddy 2018-8-9
found the answer.
surf(X,Y,Z,C) additionally specifies the surface color.
[dfdx,dfdy] = gradient(Z);
surf(x,y,Z,sqrt(dfdx.^2 + dfdy.^2))
colorbar
does the trick...
Source and further Info can be found here

更多回答(1 个)

Yuvaraj Venkataswamy
if true
surf(X,Y,Z)
end
surf(X,Y,Z) creates a three-dimensional surface plot. The function plots the values in matrix Z as heights above a grid in the x-y plane defined by X and Y. The function also uses Z for the color data, so color is proportional to height.

类别

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