Rate this Page

Function torch::special::hermite_polynomial_h(const Tensor&, const Tensor&)#

Function Documentation#

inline Tensor torch::special::hermite_polynomial_h(const Tensor &x, const Tensor &n)#

Physicist’s Hermite polynomial.

See https://pytorch.org/docs/main/special.html#torch.special.hermite_polynomial_h.

Example:

auto x = torch::randn(128, dtype=kDouble);
auto n = torch::randn(128, dtype=kDouble);

torch::special::hermite_polynomial_h(x, n);