From e6e60c02e2c8833e45eab575732011e75b5b7c73 Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Fri, 6 Jul 2018 22:12:02 -0700 Subject: ENH: Add support for ipython latex printing to polynomial Choices made, and the alternatives rejected (for no particularly strong reason): 1. Show terms in ascending order, to match their internal representation * alternative: descending, to match convention 2. Shows 0 terms in gray * alternative: omit entirely * alternative: show normally to aid comparison 3. Write each term as `basis(ax + b) * alternative: write as `basis(u) ... where u = ax + b` * alternative: show the normalized polynomial In future it would perhaps make sense to expose these options to the end user --- numpy/polynomial/hermite.py | 1 + 1 file changed, 1 insertion(+) (limited to 'numpy/polynomial/hermite.py') diff --git a/numpy/polynomial/hermite.py b/numpy/polynomial/hermite.py index 75c7e6832..8c33ee863 100644 --- a/numpy/polynomial/hermite.py +++ b/numpy/polynomial/hermite.py @@ -1851,3 +1851,4 @@ class Hermite(ABCPolyBase): nickname = 'herm' domain = np.array(hermdomain) window = np.array(hermdomain) + basis_name = 'H' -- cgit v1.2.1