atanf.c
743 Bytes
/*
=============================================================================
Copyright (C) 1997-1999 NINTENDO Co.,Ltd.
$RCSfile: atanf.c,v $
$Revision: 1.1.1.1 $
$Date: 2002/10/30 02:07:09 $
=============================================================================
関数名:atanf
-----------------------------------------------------------------------------
書式: #include <math.h>
float atanf(float x);
引数: x (数値に制限なし)
戻り値:アークタンジェント(−π/2〜π/2の範囲)
説明: 引数 x のアークタンジェントを求める。
-----------------------------------------------------------------------------
*/
#include "math.h"
float atanf(float x)
{
return atan2f(x,1.0);
}