Translations of this page?:

exp

文法:

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

exp()関数は、e(2.7182818)の引数乗の指数関数を計算します。

C++では、オーバーロード版が提供されます:

    #include <cmath>
    float exp( float 引数 ); // C99のexpf()と同じです
    long double exp( long double 引数 ); // C99のexpl()と同じです

関連トピック: log, pow, sqrt

 
• • • SitemapRecent changesRSScc