Rate this Page

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

Function Documentation#

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

Probabilist’s Hermite polynomial.

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

Example:

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

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