Translations of this page?:

tanh

文法:

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

tanh()は引数のハイパボリックタンジェントの値を計算して返します。

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

    #include <cmath>
    float tanh( float 引数 ); // C99のtanhf()と同じです
    long double tanh( long double 引数 ); // C99のtanhl()と同じです

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

 
• • • SitemapRecent changesRSScc