AnyLogic:有谁知道 table 函数的构造函数中的 "int approximationOrder" 代表什么?
AnyLogic: Does anyone know what "int approximationOrder" in the constructor of a table function stands for?
我想使用 AnyLogic TableFunction 的构造函数,但我不知道 int approximationOrder
代表什么。没有它的构造函数被标记为已弃用。有人可以帮忙吗?
int approximationOrder: the order (1, 2, 3...) of the approximation polynomial if the INTERPOLATION_APPROXIMATION mode is selected
如果您没有将 InterpolationType
设置为 INTERPOLATION_APPROXIMATION
那么您在这里选择什么都没有关系。
例如:
TableFunction x = new TableFunction(
new double[]{1,2,3,4,5},
new double[]{1,2,1,2,2},
TableFunction.InterpolationType.INTERPOLATION_LINEAR,
1, //approximationOrder makes no impact as we will not be using it
TableFunction.OUTOFRANGE_ERROR,
999.0
);
当你select你的插值到近似
时,你会看到这个参数
您使用的是哪个版本的 AnyLogic?最新版本有此记录
我想使用 AnyLogic TableFunction 的构造函数,但我不知道 int approximationOrder
代表什么。没有它的构造函数被标记为已弃用。有人可以帮忙吗?
int approximationOrder: the order (1, 2, 3...) of the approximation polynomial if the INTERPOLATION_APPROXIMATION mode is selected
如果您没有将 InterpolationType
设置为 INTERPOLATION_APPROXIMATION
那么您在这里选择什么都没有关系。
例如:
TableFunction x = new TableFunction(
new double[]{1,2,3,4,5},
new double[]{1,2,1,2,2},
TableFunction.InterpolationType.INTERPOLATION_LINEAR,
1, //approximationOrder makes no impact as we will not be using it
TableFunction.OUTOFRANGE_ERROR,
999.0
);
当你select你的插值到近似
时,你会看到这个参数您使用的是哪个版本的 AnyLogic?最新版本有此记录