System.ExpMinus1
Delphi
function ExpMinus1(const X: Extended): Extended;
C++
extern DELPHI_PACKAGE Extended __fastcall ExpMinus1(const Extended X);
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.pas System.hpp |
System | System |
説明
eX-1 を返します。
ExpMinus1 は eX-1 を返します(e はオイラーの定数、X は指定されたパラメータ)。
x86 では、この関数は F2XM1 命令をベースにしています。
Writeln(ExpMinus1(1.0)); // Displays 1.71828182845905E+0000