std::fma
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
Defined in header <cmath>
|
||
float fma( float x, float y, float z ); |
(1) | (C++11およびそれ以降) |
double fma( double x, double y, double z ); |
(2) | (C++11およびそれ以降) |
long double fma( long double x, long double y, long double z ); |
(3) | (C++11およびそれ以降) |
Promoted fma( Arithmetic x, Arithmetic y, Arithmetic z ); |
(4) | (C++11およびそれ以降) |
#define FP_FAST_FMA /* implementation-defined */ |
(5) | (C++11およびそれ以降) |
#define FP_FAST_FMAF /* implementation-defined */ |
(6) | (C++11およびそれ以降) |
#define FP_FAST_FMAL /* implementation-defined */ |
(7) | (C++11およびそれ以降) |
FMAの機能はによると、一つの三項演算として丸め(x*y) + zを計算します
Original:
The fma functions compute (x*y) + z, rounded as one ternary operation, according to the
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
FLT_ROUNDSの値によって特徴付け丸めモード.
4) Original:
rounding mode characterized by the value of FLT_ROUNDS.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
いずれかの引数が整数型を持つ場合、それはdoubleにキャストされます。他の引数はlong doubleあれば、戻り値の型はlong double、それ以外の場合はdoubleです.
5-7) Original:
If any argument has integral type, it is cast to double. If any other argument is long double, then the return type is long double, otherwise it is double.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
マクロ定数は
FP_FAST_FMAF
、FP_FAST_FMA
、またはFP_FAST_FMAL
が定義され、関数std::fma
はそれぞれx*y+z、float、とdouble引数に対する表現long doubleよりも速く評価された場合。定義されている場合、これらのマクロは整数1に評価.Original:
If the macro constants
FP_FAST_FMAF
, FP_FAST_FMA
, or FP_FAST_FMAL
are defined, the function std::fma
evaluates faster than the expression x*y+z for float, double, and long double arguments, respectively. If defined, these macros evaluate to integer 1.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] パラメータ
x, y, z | - | 浮動小数点値
Original: floating point values The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
(x*y) + z、1三項演算として丸められます
Original:
(x*y) + z, rounded as one ternary operation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] も参照してください
(C++11) |
除算演算の剰余を締結しました Original: signed remainder of the division operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C++11) |
残りだけでなく、除算の最後の3つのビットを締結しました Original: signed remainder as well as the three last bits of the division operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |