関数getmax マニュアル
(The documentation of function
getmax
)
Last Update: 2021/11/30
◆機能・用途
(Purpose)
任意の個数の実数値の中から最大値を取得する。
Identify the maximum value from an arbitrary number of real numbers.
◆形式
(Format)
#include <doublemath.h>
inline double getmax(const int number,...)
◆引数
(Arguments)
number
実数値の個数。
The number of real numbers.
...
実数値のリスト。全てdouble型とする。
The list of real numbers, all of which must be
double
-type.
◆戻り値
(Return value)
可変個引数(...)で与えた実数値の中の最大値。
The maximum value among the real numbers given by the variable-size arguments (...).
◆使用例
(Example)
double maxValue=getmax(4,1.2,3.4,-5.6,7.8);