ImplicitEquations.jl icon indicating copy to clipboard operation
ImplicitEquations.jl copied to clipboard

Julia package to facilitate graphing of implicit equations and inequalities

Results 8 ImplicitEquations.jl issues
Sort by recently updated
recently updated
newest added

See https://discourse.julialang.org/t/plotting-implicit-functions-using-implicitequations-jl/49708

This example from the tutorial no longer works due to changes in `Plots`. Perhaps there is a workaround: ``` f(x,y) = x plot(f ≧ 1/2, map=z -> 1/z) ```

``` using SpecialFunctions f(x,y) = abs(zeta(x + y*im)) r = Eq(f, 1) plot(r) ``` ``` ERROR: MethodError: no method matching AbstractFloat(::ImplicitEquations.OInterval) Closest candidates are: AbstractFloat(::Real, ::RoundingMode) where T

See https://github.com/JuliaPlots/Plots.jl/issues/1107

Hello there! This is an automated pull request submitted by `@staticfloat` to help package authors transition their Julia installation CI setups to the new binary provider URL. Please take a...

In https://discourse.julialang.org/t/implicitequations-plot-return-empty-plot/94117/5 the issue of xlims and ylims arises: ``` using Plots, ImplicitEquations f(x, y) = y^2 - 3y - 4 - x; g(x,y) = x + y plot(f ⩵...