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
julia># Create example point data
julia> x =8.*rand(100) .-4
julia> y =8.*rand(100) .-4
julia> z =sin.(x) .+cos.(y)
julia># Draw the contour plot
julia>contour(x, y, z)
julia># Create example grid data
julia> x =LinRange(-2, 2, 40)
julia> y =LinRange(0, pi, 20)
julia> z =sin.(x') .+cos.(y)
julia># Draw the contour plot
julia>contour(x, y, z)
julia># Draw the contour plot using a callable
julia>contour(x, y, (x,y) ->sin(x) +cos(y))
In previous versions, we could simply copy/paste the example as is. Now we get an error:
ERROR: UndefVarError:`julia` not defined
The text was updated successfully, but these errors were encountered:
For instance, consider the GR examples:
In previous versions, we could simply copy/paste the example as is. Now we get an error:
The text was updated successfully, but these errors were encountered: