LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

convert IEEE754 to unsigned integer

I have a VI that converts a IEEE754 number to floating point number.
 
The said VI takes two inputs:  High Word, and Low Word, and converts this into a floating point number.
 
How can I do the same thing but instead of having a floating point number as a result, I want an unsigned integer number.
 
Any ideas>???
0 Kudos
Message 1 of 2
(2,531 Views)
What you want is a little confusing.  By definition IEEE754 is a floating point number.  An unsigned integer has nothing to do with IEEE754.
 
If what you have is two 16-bit words and you want to convert to a U32 (unsigned 32 bit integer), you can take the two words and join them together.  Also look at typecasting.  Take a look around in the data manipulation palette inside the numeric palette.
0 Kudos
Message 2 of 2
(2,521 Views)