Cube function
Raises each value in the column to the power of 3.
Namespaces
math
decimal
Input
Numeric values
Output
Double or Decimal values
Syntax
For non-decimal values:
set-column :column math:pow(column,3)
For decimal values:
set-column :column decimal:pow(column,3)
Example
Raises each value in the test
column to the power of 3.
set-column :test math:pow(test)
Created in 2020 by Google Inc.