polyval* ( p -- quot )


Vocabulary
math.polynomials

Inputs
pa literal polynomial


Outputs
None

Word description
Macro version of polyval. Evaluates the literal polynomial p at the value off the top of the stack.

Examples
USING: math.polynomials prettyprint ; 2 { 1 0 1 } polyval* .
5


See also
polyval

Definition