Functions.Tanh Method

Definition

Overloads

Tanh(Column)

Computes hyperbolic tangent of the given value, as if computed by java.lang.Math.tanh.

Tanh(String)

Computes hyperbolic tangent of the given value, as if computed by java.lang.Math.tanh.

Tanh(Column)

Computes hyperbolic tangent of the given value, as if computed by java.lang.Math.tanh.

public static Microsoft.Spark.Sql.Column Tanh (Microsoft.Spark.Sql.Column column);
static member Tanh : Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Tanh (column As Column) As Column

Parameters

column
Column

Column to apply

Returns

Column object

Applies to

Tanh(String)

Computes hyperbolic tangent of the given value, as if computed by java.lang.Math.tanh.

public static Microsoft.Spark.Sql.Column Tanh (string columnName);
static member Tanh : string -> Microsoft.Spark.Sql.Column
Public Shared Function Tanh (columnName As String) As Column

Parameters

columnName
String

Column name

Returns

Column object

Applies to