Microsoft Research, Viacheslav N. Mezentsev (viacheslavmezentsev@ya.ru)SMath项目的作用域中创建。由Вячеслав Мезенцев发布。
这是一个开源项目。MIT许可证下共享的源代码SVN存储库

Features of OSLO

版本0.1.8043.3534

Functions

Additional components that add new mathematical functions to the SMath Studio program, necessary for solving problems from various fields.

  1. GearBDF("1:function", "2:function", "3:number")
    (ode,y(x),xmax) implements the Gear's BDF method with dynamically changed step size and order. Order changes between 1 and 3.
  2. GearBDF("1:function", "2:function", "3:number", "4:number")
    (ode,y(x),xmax,steps) implements the Gear's BDF method with dynamically changed step size and order. Order changes between 1 and 3.
  3. GearBDF("1:vector", "2:number", "3:number", "4:number", "5:function")
    (ics,xmin,xmax,steps,D(x,y)) implements the Gear's BDF method with dynamically changed step size and order. Order changes between 1 and 3.
  4. RK547M("1:function", "2:function", "3:number")
    (ode,y(x),xmax) implements the Runge-Kutta algoritm with per-point accurancy control.
  5. RK547M("1:function", "2:function", "3:number", "4:number")
    (ode,y(x),xmax,steps) implements the Runge-Kutta algoritm with per-point accurancy control.
  6. RK547M("1:vector", "2:number", "3:number", "4:number", "5:function")
    (ics,xmin,xmax,steps,D(x,y)) implements the Runge-Kutta algoritm with per-point accurancy control.