Julia Plot Log 色标

Julia Plot Log colorscale

我正在尝试使用 plot 函数在 julia 中构建颜色为 log10 比例的 3D 曲面图。我只希望颜色在 log10 范围内,而不是实际值本身。

using Plots
N = 51
x = range(-10, stop = 10, length = N)
y = x
f(x,y)=x^2+y^2
Plots.plot(x,y,f,st=:surface,color=:jet,camera=(25,65))

下面是输出。

下面是使用 GNUPLOT 创建的相同函数,颜色为对数刻度。您将如何使用 plot.

Julia 中创建图表

Colors支持带logscale=true参数的调色板,例如:

using Colors

Plots.plot(x,y,f,st=:surface,color=Colors.diverging_palette(20,300,20, logscale=true,  wcolor=colorant"red",dcolor1=colorant"green", dcolor2=colorant"red", b=0.1,d1=1.0,d2=1.0),camera=(25,65))