https://github.com/expr4j/expr4j-complex
Complex implementation for Expr4j library
https://github.com/expr4j/expr4j-complex
expression-evaluator java shunting-yard shunting-yard-algorithm
Last synced: 11 months ago
JSON representation
Complex implementation for Expr4j library
- Host: GitHub
- URL: https://github.com/expr4j/expr4j-complex
- Owner: expr4j
- License: apache-2.0
- Created: 2023-08-25T21:09:17.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-26T08:19:29.000Z (almost 3 years ago)
- Last Synced: 2025-03-28T17:21:18.457Z (about 1 year ago)
- Topics: expression-evaluator, java, shunting-yard, shunting-yard-algorithm
- Language: Java
- Homepage: https://expr4j.pratanumandal.in/
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Complex Implementation for Expr4j

This is a Java library providing [Complex](https://commons.apache.org/proper/commons-numbers/commons-numbers-complex/javadocs/api-1.1/org/apache/commons/numbers/complex/Complex.html) datatype implementation from [Apache Commons Numbers](https://commons.apache.org/proper/commons-numbers/commons-numbers-complex/) for [Expr4j](https://github.com/expr4j/expr4j) library.
## Dependency Management
### Maven
```xml
in.pratanumandal
expr4j-complex
1.0
```
### Gradle
```gradle
dependencies {
implementation 'in.pratanumandal:expr4j-complex:1.0'
}
```