The truncated polynomial `Normal(Series(f, x, x0, n))`.
(fLatex: string, x0Latex?: string, n?: number)
| 35 | |
| 36 | /** The truncated polynomial `Normal(Series(f, x, x0, n))`. */ |
| 37 | function normal(fLatex: string, x0Latex?: string, n?: number): BoxedExpression { |
| 38 | return ce |
| 39 | .function('Normal', [ce.function('Series', seriesArgs(fLatex, x0Latex, n))]) |
| 40 | .evaluate(); |
| 41 | } |
| 42 | |
| 43 | /** Assert the truncated polynomial matches an expected LaTeX expression |
| 44 | * exactly (structural/symbolic equality of exact coefficients). */ |
no test coverage detected