EquationsSolver.jl

A user-friendly tool to solve linear equations and nonlinear equations.
Author jake484
Popularity
2 Stars
Updated Last
1 Year Ago
Started In
March 2022

EquationsSolver

Stable Dev Build Status Build Status Coverage

EquationsSolver is a little user-friendly tool to solve linear equations and nonlinear equations.

It is based on Symbolics.jl

It can test your little problems very fast and easily.

For example,

@variables x
eqs = [
    x + 5 ~ exp(x)
]
vars = Dict(x => 2.0)
pro = NLProblem(eqs,vars)
res = solve(pro)

See docs for more information.

Used By Packages

No packages found.