Share via


Functions.Sqrt Method

Definition

Overloads

Sqrt(String)

Computes the square root of the specified float value.

Sqrt(Column)

Computes the square root of the specified float value.

Sqrt(String)

Computes the square root of the specified float value.

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

Parameters

columnName
String

Column name

Returns

Column object

Applies to

Sqrt(Column)

Computes the square root of the specified float value.

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

Parameters

column
Column

Column to apply

Returns

Column object

Applies to