Evaluate a polynomial
Double_Type polynom(Double_Type a, b, ...c, Integer_Type n, Double_Type x)
The polynom function returns the value of the polynomial expression:
ax^n + bx^(n - 1) + ... c
The polynom function should be extended to work with complex and array data types. The current implementation is limited to Double_Type quantities.