Creates a column of integers by dividing each element in the first column by the corresponding element in the second column.
SDKs
- macOS 10.14+
- Xcode 10.0+
Framework
- Create ML
Declaration
static func / (a: MLData Column<Int>, b: MLData Column<Int>) -> MLData Column<Int>
Parameters
a
A column of integers.
b
A column of integers.
Return Value
A new column of integers if the columns are the same size; otherwise an invalid column.