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.
-
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. -
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. -
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. -
RK547M("1:function", "2:function", "3:number")
(ode,y(x),xmax) implements the Runge-Kutta algoritm with per-point accurancy control. -
RK547M("1:function", "2:function", "3:number", "4:number")
(ode,y(x),xmax,steps) implements the Runge-Kutta algoritm with per-point accurancy control. -
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.