Options
All
  • Public
  • Public/Protected
  • All
Menu

A client for MathProcessor - simple REST service around sympy

Hierarchy

  • SympyClient

Index

Constructors

constructor

  • Parameters

    • serverAddress: string

      http(s) address of the MathProcessor to call

    • Optional http: HttpClient

      No need to pass it when use from browser. if use not from broswer you need to implement HttpClient interface For example, consider using AxiousBasedHttpClient from /test/sympy-rest-client.ts

    Returns SympyClient

Methods

checkEquivalence

compute

latex

  • Get the LaTex representation of Sympy expression. Note: The latex is generated by Sympy and in most cases this latex can't be pasted to the SemanticMathEditor. It only can be shown using KaTex or some other Latex renderer.

    throws

    SympyError

    throws

    UnsupportedSympyConstruction

    Parameters

    Returns Promise<string>

    the LaTex representation of the given parameter.

mirror

  • The returned expression is equivavlent to entered one (but not equal in genearl case) The goal of this method is to ensure sympy understands the expression It is designed for use with tests. Note: MathNode class belongs to the SemanticMatEditor

    throws

    SympyError

    throws

    UnsupportedSympyConstruction

    Parameters

    Returns Promise<MathNode>

    the expression passed as an argument as sympy has understood it

plot2d

  • Generates an image with 2d plot.

    Parameters

    • sympyExpressions: PreparedSympyCall[]

      One or more expressions to plot. Each is the result of one of prepareCompute

    • svg: boolean

      if the result must be in SVG (if not, PNG is used)

    • Optional onError: (err: SympyError) => void

      callback to call in case of error

    • Optional interval: PlotInterval

      optional interval where we need the plot

    • Optional params: Plot2dParams

      additional plot parameters

    Returns HTMLImageElement

    image element.

plot2dParametricSrc

  • Generates source for image with 2d parametric plot.

    Parameters

    • expressionPairs: { x: PreparedSympyCall; y: PreparedSympyCall }[]

      one or more pair of expressions to generate the parametric plot.

    • svg: boolean

      if the result must be in SVG (if not, PNG is used)

    • Optional interval: PlotInterval

      optional interval where we need the plot

    • Optional params: Plot2dParams

      additional plot parameters

    Returns string

    URL to be added to image tag.

plot2dSrc

  • Generates source for image with 2d plot.

    Parameters

    • sympyExpressions: PreparedSympyCall[]

      One or more expressions to plot. Each is the result of one of prepareCompute

    • svg: boolean

      if the result must be in SVG (if not, PNG is used)

    • Optional interval: PlotInterval

      optional interval where we need the plot

    • Optional params: Plot2dParams

      additional plot parameters

    Returns string

    URL to be added to image tag.

plot2d_parametric

  • Generates image with 2d parametric plot.

    Parameters

    • expressionPairs: { x: PreparedSympyCall; y: PreparedSympyCall }[]

      one or more pair of expressions to generate the parametric plot.

    • svg: boolean

      if the result must be in SVG (if not, PNG is used)

    • Optional onError: (err: SympyError) => void

      callback to call in case of error

    • Optional interval: PlotInterval

      optional interval where we need the plot

    • Optional params: Plot2dParams

      additional plot parameters

    Returns HTMLImageElement

    image element

plot3d

plot3dParametricLineSrc

plot3dParametricSurfaceSrc

plot3dSrc

plot3d_parametric_line

plot3d_parametric_surface

prepareCompute

  • Converts MathTree from the SemanticMatEditor to PreparedSympyCall Alternatively returns SemanticMathEditor's {SemanticErrorDescription} (if converting is not possible) The SemanticErrorDescription object can be used to decorate problematic node in the SemanticMathEditor

    Parameters

    • node: MathNode

    Returns PreparedSympyCall | SemanticErrorDescription

preparePlotInterval

  • preparePlotInterval(v: MathVariable, start?: number, end?: number): PlotInterval
  • Creates interval objects for plot generation methods

    Parameters

    • v: MathVariable

      a variable. Please look at SemanticMathEditor for MathVariable meaning.

    • Optional start: number

      a min value

    • Optional end: number

      a max value

    Returns PlotInterval

    object, suitable for passing to plotting methods.

simplify

Legend

  • Module
  • Object literal
  • Variable
  • Function
  • Function with type parameter
  • Index signature
  • Type alias
  • Type alias with type parameter
  • Enumeration
  • Enumeration member
  • Property
  • Method
  • Interface
  • Interface with type parameter
  • Constructor
  • Property
  • Method
  • Index signature
  • Class
  • Class with type parameter
  • Constructor
  • Property
  • Method
  • Accessor
  • Index signature
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Protected property
  • Protected method
  • Protected accessor
  • Private property
  • Private method
  • Private accessor
  • Static property
  • Static method

Generated using TypeDoc