SOLVE
Bisection root-finder: the value of the named variable in [lo, hi] where the expression equals the target. Requires a sign change across the bracket. Max 80 bisections; deterministic.
| Category | Engineering |
| Syntax | SOLVE(varName, expr, target, lo, hi) |
Parameters
| Parameter | Required | Description |
|---|---|---|
varName | Required | Bare name of the unknown. |
expr | Required | Expression of varName to drive to the target. |
target | Required | Value the expression must equal. |
lo | Required | Lower bound of the search bracket. |
hi | Required | Upper bound of the search bracket. |
Example
SOLVE(varName, expr, target, lo, hi)
Auto-generated from the EngCanvas function registry.