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