https://github.com/jake484/equationssolver.jl
A user-friendly tool to solve linear equations and nonlinear equations.
https://github.com/jake484/equationssolver.jl
equation-solver julia
Last synced: 3 days ago
JSON representation
A user-friendly tool to solve linear equations and nonlinear equations.
- Host: GitHub
- URL: https://github.com/jake484/equationssolver.jl
- Owner: jake484
- License: mit
- Created: 2022-03-22T06:24:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-28T01:40:02.000Z (over 3 years ago)
- Last Synced: 2025-02-20T21:06:25.221Z (over 1 year ago)
- Topics: equation-solver, julia
- Language: Julia
- Homepage:
- Size: 922 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EquationsSolver
[](https://jake484.github.io/EquationsSolver.jl/)
[](https://jake484.github.io/EquationsSolver.jl/)
[](https://ci.appveyor.com/project/jake484/EquationsSolver-jl)
[](https://cirrus-ci.com/github/jake484/EquationsSolver.jl)
[](https://codecov.io/gh/jake484/EquationsSolver.jl)
EquationsSolver is a little user-friendly tool to solve linear equations and nonlinear equations.
It is based on [Symbolics.jl](https://github.com/JuliaSymbolics/Symbolics.jl)
It can test your little problems very fast and easily.
For example,
```julia
@variables x
eqs = [
x + 5 ~ exp(x)
]
vars = Dict(x => 2.0)
pro = NLProblem(eqs,vars)
res = solve(pro)
```
See [docs](https://jake484.github.io/EquationsSolver.jl/) for more information.