Hallo,
wie kann ich folgenden Bruch schreiben?
(x^2n+1) / (2n+1)! <<<< Kann man damit sinhx näherungsweise berechnen?
wie kann ich folgenden Bruch schreiben?
(x^2n+1) / (2n+1)! <<<< Kann man damit sinhx näherungsweise berechnen?
Hallo,
wie kann ich folgenden Bruch schreiben?
(x^2n+1) / (2n+1)! <<<< Kann man damit sinhx näherungsweise berechnen?
private static double fac(int n) {
if (n==1)
return 1;
else
return n * fac(n-1);
}
public static double chillerStudendsFunction(double x, int n) {
return Math.pow(x, 2*n+1) / fac(2*n+1);
}