我很难理解如何在Apache Commons Math中使用DerivativeStructure。
我有Logit函数,我想获得第一阶导数。然后我想在多个不同的值上得到该导数的值。
Logit logit = new Logit(0.1, 10.0);
DerivativeStructure ds = // How to instanctiate?
DerivativeStructure dsRes = logit.value(ds);
// How to use dsRes to get the value of the derivative function applied on
// several values?
此外,如果有任何文档描述如何使用DerivativeStructure,我非常感兴趣!
感谢您的帮助。
答案 0 :(得分:3)
在Apache Commons Math User Guide,关于数值分析Differentiation的部分,有关如何应用DerivativeStructure的合理介绍。