SQRT

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

名前

sqrt, sqrtf, sqrtl - 平方根関数  

書式

#include <math.h>

double sqrt(double x);

float sqrtf(float x);
long double sqrtl(long double x);

-lm でリンクする。  

説明

sqrt() 関数は x の平方根のうち負でない方の値を返す。 x が負ならば、計算は失敗し、errnoEDOM に設定される。  

エラー

EDOM
x が負である。
 

準拠

SVr4, 4.3BSD, C89. float 版と long double 版は C99 の要求仕様である。  

関連項目

cbrt(3), csqrt(3), hypot(3)


 

Index

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

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