Function uint_bits_to_float

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

For each component of v, returns a floating-point value corresponding to a unsigned 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: