( fLatex: string, x0Latex?: string, n?: number )
| 26 | } |
| 27 | |
| 28 | function series( |
| 29 | fLatex: string, |
| 30 | x0Latex?: string, |
| 31 | n?: number |
| 32 | ): BoxedExpression { |
| 33 | return ce.function('Series', seriesArgs(fLatex, x0Latex, n)).evaluate(); |
| 34 | } |
| 35 | |
| 36 | /** The truncated polynomial `Normal(Series(f, x, x0, n))`. */ |
| 37 | function normal(fLatex: string, x0Latex?: string, n?: number): BoxedExpression { |
no test coverage detected