01-10-2007 05:47 AM
01-10-2007 06:34 AM
CVI uses the IEEE implementation of floating point numbers, so the double type has a precision of 53 bits. Providing your original number (Ncount) stored in a 64 bit quantity has fewer significant bits than this, you will not lose precision when the compiler converts it to a double. If you really need more precision, you may have to consider writing your own routines, unless you can find a third party library that does it for you.
JR
01-10-2007 08:03 PM
01-11-2007 03:33 AM
01-11-2007 04:03 AM