接口 ButcherArrayProvider
- 所有已知实现类:
-
ClassicalRungeKuttaIntegrator
,DormandPrince54Integrator
,DormandPrince853Integrator
,EmbeddedRungeKuttaIntegrator
,EulerIntegrator
,GillIntegrator
,HighamHall54Integrator
,LutherIntegrator
,MidpointIntegrator
,RungeKuttaIntegrator
,ThreeEighthesIntegrator
public interface ButcherArrayProvider
This interface represents an integrator based on Butcher arrays.
- 另请参阅:
-
方法概要
-
方法详细资料
-
getC
double[] getC()从Butcher数组中获取时间步长(不包括第一个零)。- 返回:
- 从Butcher数组中获取时间步长(不包括第一个零)
-
getA
double[][] getA()获取Butcher数组中的内部权重(不包括第一行空行)。- 返回:
- 从Butcher数组中获取内部权重(不包括第一行空行)
-
getB
double[] getB()获取Butcher数组中高阶方法的外部权重。- 返回:
- 从Butcher数组中获取高阶方法的外部权重
-