Functions.Atan2 Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Atan2(String, Double) |
Computes atan2 for the given |
Atan2(Column, Column) |
Computes atan2 for the given |
Atan2(Column, Double) |
Computes atan2 for the given |
Atan2(Column, String) |
Computes atan2 for the given |
Atan2(Double, Column) |
Computes atan2 for the given |
Atan2(Double, String) |
Computes atan2 for the given |
Atan2(String, Column) |
Computes atan2 for the given |
Atan2(String, String) |
Computes atan2 for the given |
Atan2(String, Double)
Computes atan2 for the given x
and y
.
public static Microsoft.Spark.Sql.Column Atan2 (string yName, double xValue);
static member Atan2 : string * double -> Microsoft.Spark.Sql.Column
Public Shared Function Atan2 (yName As String, xValue As Double) As Column
Parameters
- yName
- String
Coordinate on y-axis
- xValue
- Double
Coordinate on x-axis
Returns
Column object
Applies to
Atan2(Column, Column)
Computes atan2 for the given x
and y
.
public static Microsoft.Spark.Sql.Column Atan2 (Microsoft.Spark.Sql.Column y, Microsoft.Spark.Sql.Column x);
static member Atan2 : Microsoft.Spark.Sql.Column * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Atan2 (y As Column, x As Column) As Column
Parameters
- y
- Column
Coordinate on y-axis
- x
- Column
Coordinate on x-axis
Returns
Column object
Applies to
Atan2(Column, Double)
Computes atan2 for the given x
and y
.
public static Microsoft.Spark.Sql.Column Atan2 (Microsoft.Spark.Sql.Column y, double xValue);
static member Atan2 : Microsoft.Spark.Sql.Column * double -> Microsoft.Spark.Sql.Column
Public Shared Function Atan2 (y As Column, xValue As Double) As Column
Parameters
- y
- Column
Coordinate on y-axis
- xValue
- Double
Coordinate on x-axis
Returns
Column object
Applies to
Atan2(Column, String)
Computes atan2 for the given x
and y
.
public static Microsoft.Spark.Sql.Column Atan2 (Microsoft.Spark.Sql.Column y, string xName);
static member Atan2 : Microsoft.Spark.Sql.Column * string -> Microsoft.Spark.Sql.Column
Public Shared Function Atan2 (y As Column, xName As String) As Column
Parameters
- y
- Column
Coordinate on y-axis
- xName
- String
Coordinate on x-axis
Returns
Column object
Applies to
Atan2(Double, Column)
Computes atan2 for the given x
and y
.
public static Microsoft.Spark.Sql.Column Atan2 (double yValue, Microsoft.Spark.Sql.Column x);
static member Atan2 : double * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Atan2 (yValue As Double, x As Column) As Column
Parameters
- yValue
- Double
Coordinate on y-axis
- x
- Column
Coordinate on x-axis
Returns
Column object
Applies to
Atan2(Double, String)
Computes atan2 for the given x
and y
.
public static Microsoft.Spark.Sql.Column Atan2 (double yValue, string xName);
static member Atan2 : double * string -> Microsoft.Spark.Sql.Column
Public Shared Function Atan2 (yValue As Double, xName As String) As Column
Parameters
- yValue
- Double
Coordinate on y-axis
- xName
- String
Coordinate on x-axis
Returns
Column object
Applies to
Atan2(String, Column)
Computes atan2 for the given x
and y
.
public static Microsoft.Spark.Sql.Column Atan2 (string yName, Microsoft.Spark.Sql.Column x);
static member Atan2 : string * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Atan2 (yName As String, x As Column) As Column
Parameters
- yName
- String
Coordinate on y-axis
- x
- Column
Coordinate on x-axis
Returns
Column object
Applies to
Atan2(String, String)
Computes atan2 for the given x
and y
.
public static Microsoft.Spark.Sql.Column Atan2 (string yName, string xName);
static member Atan2 : string * string -> Microsoft.Spark.Sql.Column
Public Shared Function Atan2 (yName As String, xName As String) As Column
Parameters
- yName
- String
Coordinate on y-axis
- xName
- String
Coordinate on x-axis
Returns
Column object