EXP (Azure Stream Analytics)

 

Published: November 3, 2015

Updated: April 22, 2016

Applies To: Azure

A mathematical function that returns the exponential value of the specified float expression.

Syntax

EXP (float_expression)  

float_expression

Is an expression of type float or of a type that can be implicitly converted to float.

float

SELECT EXP(input.x) AS "The EXP of the variable x"  
FROM input  

Show: