Created by Microsoft Research, Viacheslav N. Mezentsev (viacheslavmezentsev@ya.ru) in the scope of SMath project. Published by Вячеслав Мезенцев.
This is Open Source project. Sources shared under MIT Licence and available in public SVN repository.

Features of OSLO

Version 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.