CBRT

Section: Linux Programmer's Manual (3)
Updated: 2007-07-26
Index JM Home Page roff page
 

名前

cbrt, cbrtf, cbrtl - 立方根を計算する関数  

書式

#include <math.h>

double cbrt(double x);

float cbrtf(float x);
long double cbrtl(long double x);

-lm でリンクする。

glibc 向けの機能検査マクロの要件 (feature_test_macros(7) 参照):

cbrt(), cbrtf(), cbrtl(): _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE >= 500 || _ISOC99_SOURCE; または cc -std=c99  

説明

cbrt() 関数は x の (実数)立方根を返す。 この関数が失敗することはない。なぜなら、 すべての内部表現可能な (representable) 実数は 必ず内部表現可能な立方根を持つためである。  

準拠

C99  

関連項目

pow(3), sqrt(3)


 

Index

名前
書式
説明
準拠
関連項目

This document was created by man2html, using the manual pages.
Time: 04:31:34 GMT, November 19, 2007