Functions.Hypot 方法

定義

多載

Hypot(Column, Double)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

Hypot(String, String)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

Hypot(String, Double)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

Hypot(String, Column)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

Hypot(Column, Column)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

Hypot(Double, Column)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

Hypot(Column, String)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

Hypot(Double, String)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

Hypot(Column, Double)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

public static Microsoft.Spark.Sql.Column Hypot(Microsoft.Spark.Sql.Column left, double right);
static member Hypot : Microsoft.Spark.Sql.Column * double -> Microsoft.Spark.Sql.Column
Public Shared Function Hypot (left As Column, right As Double) As Column

參數

left
Column

要套用的左側資料行

right
Double

右側值

傳回

Column 物件

適用於

Hypot(String, String)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

public static Microsoft.Spark.Sql.Column Hypot(string leftName, string rightName);
static member Hypot : string * string -> Microsoft.Spark.Sql.Column
Public Shared Function Hypot (leftName As String, rightName As String) As Column

參數

leftName
String

左側資料行名稱

rightName
String

右側資料行名稱

傳回

Column 物件

適用於

Hypot(String, Double)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

public static Microsoft.Spark.Sql.Column Hypot(string leftName, double right);
static member Hypot : string * double -> Microsoft.Spark.Sql.Column
Public Shared Function Hypot (leftName As String, right As Double) As Column

參數

leftName
String

左側資料行名稱

right
Double

右側值

傳回

Column 物件

適用於

Hypot(String, Column)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

public static Microsoft.Spark.Sql.Column Hypot(string leftName, Microsoft.Spark.Sql.Column right);
static member Hypot : string * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Hypot (leftName As String, right As Column) As Column

參數

leftName
String

左側資料行名稱

right
Column

要套用的右側資料行

傳回

Column 物件

適用於

Hypot(Column, Column)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

public static Microsoft.Spark.Sql.Column Hypot(Microsoft.Spark.Sql.Column left, Microsoft.Spark.Sql.Column right);
static member Hypot : Microsoft.Spark.Sql.Column * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Hypot (left As Column, right As Column) As Column

參數

left
Column

要套用的左側資料行

right
Column

要套用的右側資料行

傳回

Column 物件

適用於

Hypot(Double, Column)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

public static Microsoft.Spark.Sql.Column Hypot(double left, Microsoft.Spark.Sql.Column right);
static member Hypot : double * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Hypot (left As Double, right As Column) As Column

參數

left
Double

左側值

right
Column

要套用的右側資料行

傳回

Column 物件

適用於

Hypot(Column, String)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

public static Microsoft.Spark.Sql.Column Hypot(Microsoft.Spark.Sql.Column left, string rightName);
static member Hypot : Microsoft.Spark.Sql.Column * string -> Microsoft.Spark.Sql.Column
Public Shared Function Hypot (left As Column, rightName As String) As Column

參數

left
Column

要套用的左側資料行

rightName
String

右側資料行名稱

傳回

Column 物件

適用於

Hypot(Double, String)

sqrt(a^2^ + b^2^)不含中繼溢位或下溢的計算。

public static Microsoft.Spark.Sql.Column Hypot(double left, string rightName);
static member Hypot : double * string -> Microsoft.Spark.Sql.Column
Public Shared Function Hypot (left As Double, rightName As String) As Column

參數

left
Double

左側值

rightName
String

右側資料行名稱

傳回

Column 物件

適用於