pub fn float_bits_to_int_vec<const D: usize>(
v: &Matrix<f32, Const<D>, Const<1>, ArrayStorage<f32, D, 1>>,
) -> Matrix<i32, Const<D>, Const<1>, ArrayStorage<i32, D, 1>>Expand description
Returns a signed integer value representing the encoding of each component of v.
The floating point value’s bit-level representation is preserved.