[NumCS] Add more sympy tricks

This commit is contained in:
2026-01-18 11:38:17 +01:00
parent 3bc264184b
commit 5de9a21514
4 changed files with 19 additions and 0 deletions

View File

@@ -13,3 +13,5 @@ roots = sp.roots(f) # Computes the roots of function f analytically
sp.hermite_poly(5) # Creates hermite poly of degree 5
sp.chebyshevt_poly(5) # Creates chebychev T (first kind) poly of degree 5
sp.chebyshevu_poly(5) # Creates chebychev U (second kind) poly of degree 5
# To print nicely rendered math expressions, you can use
sp.init_printing()