A simple and fast formula parser and evaluator.
Formulas may be parsed using the formula.New() function. The function returns a formula that may be evaluated an unlimited amount of times. Note that parsing formulas is generally heavier than evaluating them, so it is recommended to parse once and evaluate the same formula multiple times where applicable.
package main
import (
"github.com/sandertv/go-formula/v2"
"log"
)
func main() {
f, err := formula.New("17*x + pow(z*3, 3)")
if err != nil {
log.Print(err)
return
}
x := formula.Var("x", 4.5)
z := formula.Var("z", 5)
log.Printf("Formula output: %v", f.MustEval(x, z))
}