public double evalute(double distance){
/**
* equation (3.2)
*/
this.from = 0;
this.to = distance;
this.n = 2;
return - 10 * Math.log10(Math.exp(-IntSimpson(this.from, this.to, this.n)));
}
私は手動で設計されたIntSimpson()関数がありますが、私は標準ライブラリを使いたいです!どうやってそれをどこで見つけることができますか?標準のSimpsonIntegratorをインポートorg.apache.commons.math3.analysis.integration.SimpsonIntegratorで使用する方法。
ありがとう、それは動作します。 – AlexTitov
UnivariateFunction形式のorg.apache.commons.math3を使用できますか? sin(x)を使用したい場合は、Taylorシリーズで分解する必要がありますか? – AlexTitov