Next Previous Contents

53. polynom

Synopsis

Evaluate a polynomial

Usage

Double_Type polynom(Double_Type a, b, ...c, Integer_Type n, Double_Type x)

Description

The polynom function returns the value of the polynomial expression:

     ax^n + bx^(n - 1) + ... c
Notes

The polynom function should be extended to work with complex and array data types. The current implementation is limited to Double_Type quantities.

See Also

exp


Next Previous Contents