Isolines

Isolines

isolines(0.0:0.1:10, 0.0:0.1:10, (x,y) -> 1 - (x^2 - y^2)/10)

isolines(0.0:0.1:10, 0.0:0.1:10, (x,y) -> 1 - (x^2 - y^2)/10, lift = true)

AsyPlots.isolinesFunction.
isolines(xs, ys, zs; lift = false, interpolation = :cubic)    

Plot the contour lines of the function whose values are represented
by the array (or function) `zs`. If `lift` is true, plot in 3D.

Example

```julia-repl julia> isolines(0:10, 0:10, (x,y) -> (100 - x^2 + y^2)/10, lift = true)

source