numpy.polynomial.hermite.hermval()

numpy.polynomial.hermite.hermval

numpy.polynomial.hermite.hermval(x, c, tensor=True) [source]

Evaluate an Hermite series at points x.

If c is of length n + 1, this function returns the value:

p(x) = c_0 * H_0(x) + c_1 * H_1(x) + ... + c_n * H_n(x)

The parameter x is converted to an array only if it is a tuple or a list, otherwise it is treated as a scalar. In either case, either x or its elements must support multiplica