shr

open infix fun shr(other: F64Array): F64Array

Shifts each element in the array to the right by the elements in another array. The values of both arrays are first cast to integers before the operation.

Return

the computed array

Parameters

other

the other array, must have the same shape as this array


open infix fun shr(other: Int): F64Array

Shifts each element in the array to the right by a scalar. The values are first cast to integers before the operation.

Return

the computed array

Parameters

other

the scalar