kennen:lib:comp_ellint_2
Inhaltsverzeichnis
comp_ellint_2()
#include
<cmath>
double comp_ellint_2(double k) // C++17
Liefert Wert des vollständigen Elliptischen Integrals 2. Art $E(k) = \int_0^{\pi/2} \sqrt{1-k^2 \sin^2 \theta}\, d\theta = E(k,\pi/2)$.
Parameter
k | Modul $|k| \leq 1$ |
Ergebnis
Rückgabewert: $E(k)$.
Siehe auch
Beispiel
- comp_ellint_2.cpp
#include <cmath> #include <iostream> int main() { for (int i = 0; i <= 100; ++i) { double k = 0.01*i; std::cout << k << '\t' << std::comp_ellint_2(k) << '\n'; } }
kennen/lib/comp_ellint_2.txt · Zuletzt geändert: 2016-12-03 15:12 von 127.0.0.1