2

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 の使い方が書かれたドキュメントがあれば、非常に興味があります。

ご協力いただきありがとうございます。

4

1 に答える 1

3

Apache Commons Math User Guideの Numerical analysis Differentiationのセクションには、 DerivativeStructureの適用方法に関する妥当な紹介があります。

于 2013-05-27T16:17:32.667 に答える