kennen:lib:comp_ellint_1
Inhaltsverzeichnis
comp_ellint_1()
#include
<cmath>
double comp_ellint_1(double k) // C++17
Liefert Wert des vollständigen Elliptischen Integrals 1. Art $K(k) = \int_0^{\pi/2} \frac{d\theta}{\sqrt{1-k^2 \sin^2 \theta}} = F(k,\pi/2)$.
Parameter
k | Modul $|k| \leq 1$ |
Ergebnis
Rückgabewert: $K(k)$.
Siehe auch
Beispiel
- comp_ellint_1.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_1(k) << '\n'; } }
kennen/lib/comp_ellint_1.txt · Zuletzt geändert: 2016-12-03 15:12 von 127.0.0.1