関数getmin マニュアル

(The documentation of function getmin)

Last Update: 2021/11/30


◆機能・用途(Purpose)

任意の個数の実数値の中から最小値を取得する。
Identify the minimum value from an arbitrary number of real numbers.


◆形式(Format)

#include <doublemath.h>
inline double getmin(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 minimum value among the real numbers given by the variable-size arguments (...).


◆使用例(Example)

double minValue=getmin(4,1.2,3.4,-5.6,7.8);