Computes the radians of an input value measuring degrees of an angle. The value can be a Decimal or Integer literal or a reference to a column containing numeric values. |
Numeric literal example:
round(radians(57.2728),4) |
Output: Returns the computation in radians of 57.2728
rounded to four digits, which is 1.0000
.
Column reference example:
radians(myDegrees) |
Output: Generates the new myRads
column containing the conversion of the values in MyDegrees
column to radians.
radians(numeric_value) |
Argument | Required? | Data Type | Description |
---|---|---|---|
numeric_value | Y | string, decimal, or integer | Name of column, Decimal or Integer literal, or function returning those types to apply to the function |
Name of the column, Integer or Decimal literal, or function returning that data type to apply to the function.
Required? | Data Type | Example Value |
---|---|---|
Yes | String (column reference) or Integer or Decimal literal | 10 |