namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


kennen:lib:comp_ellint_1

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

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki