Function int_bits_to_float_vec

Source
pub fn int_bits_to_float_vec<const D: usize>(
    v: &Matrix<i32, Const<D>, Const<1>, ArrayStorage<i32, D, 1>>,
) -> Matrix<f32, Const<D>, Const<1>, ArrayStorage<f32, D, 1>>
Expand description

For each components of v, returns a floating-point value corresponding to a signed integer encoding of a floating-point value.

If an inf or NaN is passed in, it will not signal, and the resulting floating point value is unspecified. Otherwise, the bit-level representation is preserved.

ยงSee also: