You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For surface plots, xscale argument only changes ticks and labels, does not scale the plot:
xs = collect(0.1:0.05:2.0)
ys = collect(0.2:0.1:2.0)
X = [x for x = xs for _ = ys]
Y = [y for _ = xs for y = ys]
Z = ((x, y)->begin
1 / x + y * x ^ 2
end)
surface(X, Y, Z.(X, Y))
surface(X, Y, Z.(X, Y), xscale=:log10)
Plots v1.40.5
GR v0.73.7
Julia 1.10.3
The text was updated successfully, but these errors were encountered:
For surface plots, xscale argument only changes ticks and labels, does not scale the plot:
Plots v1.40.5
GR v0.73.7
Julia 1.10.3
The text was updated successfully, but these errors were encountered: