fmin

Autres langues

Langue: ja

Autres versions - même langue

Version: 2002-07-28 (fedora - 25/11/07)

Section: 3 (Bibliothèques de fonctions)

名前

fmin, fminf, fminl - 最小値を見つける

書式

#include <math.h>

double fmin(double x, double y);
float fminf(float x, float y);
long double fminl(long double x, long double y);

-std=c99 でコンパイルし、-lm でリンクする。

説明

x と y のうち小さい方の値を見つける。

準拠

C99

関連項目

fmax(3)