|
real(kind=cfp) function | cfp_eval_poly_horner_single (n, x, a) |
| This function evaluates a polynomial of degree \(n\) at point \(x\) using the Horner form for polynomials. More...
|
|
◆ cfp_eval_poly_horner_single()
real(kind=cfp) function special_functions_gbl::cfp_eval_poly_horner::cfp_eval_poly_horner_single |
( |
integer, intent(in) |
n, |
|
|
real(kind=cfp), intent(in) |
x, |
|
|
real(kind=cfp), dimension(1:n+1), intent(in) |
a |
|
) |
| |
This function evaluates a polynomial of degree \(n\) at point \(x\) using the Horner form for polynomials.
- Parameters
-
[in] | n | Order of the polynomial |
[in] | x | The point at which to evaluate. |
[in] | a | The array of the coefficients a(1:n+1): \(a_{0},a_{1},\dots,a_{n}\). |
The documentation for this interface was generated from the following file: