namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


kennen:lib:fma

fma()

#include <cmath>

double fma (double x, double x, double z) 

Liefert x*y + z mit nur einer Rundung ("fused multiply and add").

Parameter

x, y, z reelle Zahlen

Ergebnis

Rückgabewert: x*y + z ohne Zwischenrundung.

Siehe auch

-

Beispiel

fma.cpp
#include <cmath>
#include <iostream>
 
int main()
{
  std::cout << "0.1*10 + 1 = " << std::fma(0.1, 10, 1) << '\n';
}
kennen/lib/fma.txt · Zuletzt geändert: 2019-11-20 15:33 von 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki