dot

fun dot(a: FloatArray, aOffset: Int, aLength: Int, b: FloatArray, bOffset: Int): Float

Computes the dot product of two float arrays with specified offsets and lengths.

Return

The dot product result

Parameters

a

The first array

aOffset

The offset in the first array

aLength

The length of the first array

b

The second array

bOffset

The offset in the second array


Computes the dot product of two float arrays

Return

The dot product result

Parameters

a

The first array

b

The second array