Translations of this page?:

atan

文法:

    #include <cmath>
    double atan( double 引数 );

atan()関数は、指定された引数のアークタンジェントの値を計算して返します。結果の範囲は[-π/2, +π/2]になります。

C++では以下のオーバーロード版も提供されます:

    #include <cmath>
    float atan( float arg ); // C99のatanf()と同じです
    long double atan( long double arg ); // C99のatanl()と同じです

関連トピック: acos, asin, atan2, cos, cosh, sin, sinh, tan, tanh

 
• • • SitemapRecent changesRSScc