MCPcopy Create free account
hub / github.com/cortex-js/compute-engine / series

Function series

test/compute-engine/series.test.ts:28–34  ·  view source on GitHub ↗
(
  fLatex: string,
  x0Latex?: string,
  n?: number
)

Source from the content-addressed store, hash-verified

26}
27
28function 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))`. */
37function normal(fLatex: string, x0Latex?: string, n?: number): BoxedExpression {

Callers 1

series.test.tsFile · 0.85

Calls 3

seriesArgsFunction · 0.85
evaluateMethod · 0.65
functionMethod · 0.65

Tested by

no test coverage detected