EXP function 释义 [计]指数函数 行业词典 计算机 指数函数
EXP function This article describes the formula syntax and usage of theEXPfunction in Microsoft Excel. Description Returns e raised to the power of number. The constant e equals 2.71828182845904, the base of the natural logarithm. Syntax EXP(number) The EXP function syntax has the following argume...
Exp(number) The requirednumberargument is a Double or any valid numeric expression. Remarks If the value ofnumberexceeds 709.782712893, an error occurs. The constanteis approximately 2.718282. Note:TheExpfunction complements the action of theLogfunction and is sometimes referred to as the antilogarith...
Exp function Calculates the base e exponential of the pixels in a raster. Notes The inputRastercan be an integer or a floating point. The output of this tool is always a floating point, regardless of the input type. The inputRastercan be positive or negative. The output of this tool ...
Abs Function Array Function Asc Function Atn Function CBool Function CByte Function CCur Function CDate Function CDbl Function Chr Function CInt Function CLng Function Conversion Functions Cos Function CreateObject Function CSng Function CStr Function Date Function DateAdd Function DateDiff Function DatePart Fu...
The base e exponential is the most commonly used exponential function. If the input is a multiband raster, the output will be a multiband raster. The function will perform the operation on each band in the input. If the input is a multidimensional raster, all slices from all variables will...
The exp() function takes a number as an argument, and returns the exponential value, of that number. That is, e (2.71828182845904) raised to the power of the given number. Return Type Decimal Syntax <variable> = <number>.exp(); (OR) <variable> = exp(<number> ); ParameterDescriptionDa...
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "EXP")] public static double? Exp(double? arg); 參數 arg Nullable<Double> 輸入值。 傳回 Nullable<Double> 提升為輸入值乘冪的常數 e。 屬性 EdmFunctionAttribute 備註 您無法直接呼叫此函式。 此函式...
Example: exp() function The following example shows the usage of exp() function. #include <math.h> #include <stdio.h> int main(void) { double x, y; x = 5.0; y = exp(x); printf("exp( %lf ) = %lf\n", x, y); x = 4.0; ...
The exp() function returns e raised to the power of x (ex).'e' is the base of the natural system of logarithms (approximately 2.718282) and x is the number passed to it.Syntaxexp(x);ParameterDescription x Required. Specifies the exponent...