Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

CentOS 4.8

i386

fmaf(3)


FMA

FMA

NAME
SYNOPSIS
DESCRIPTION
CONFORMING TO
SEE ALSO

NAME

fma, fmaf, fmal − floating-point multiply and add

SYNOPSIS

#include <math.h>

double fma(double x, double y, double z);

float fmaf(float x, float y, float z);

long double fmal(long double x, long double y, long double z);

DESCRIPTION

The fma() function computes x * y + z. The result is rounded according to the rounding mode determined by the value of FLT_ROUNDS.

CONFORMING TO

C99

SEE ALSO

remainder(3), remquo(3)



fmaf(3)