DADiSP Worksheet Functions > Function Categories > Data Type Conversion > ULONG

 

ULONG, UINT32

Purpose:

Macro. Provides an argument for functions specifying 32-bit (4-byte) unsigned integer data type.

Syntax:

ULONG

UINT32

Expansion:

8

Example:

writeb("MYFILE", ulong)

 

writes the series in the current Window to a file named MYFILE as 32-bit unsigned integer point values ranging from 0 to +4294967295. The above example is equivalent to writeb("MYFILE", 8).

Example:

writeb("MYFILE", uint32)

 

writes the series in the current Window to a file named MYFILE as 32-bit unsigned integer point values ranging from 0 to +4294967295. The above example is equivalent to writeb("MYFILE", 8).

Remarks:

ULONG and UINT32 are not a stand-alone Worksheet function. They can only act as an argument for functions, such as READB and WRITEB, and other functions with data type arguments.

See Also:

DOUBLE

FLOAT

LONG

READB

WRITEB

SBYTE

SINT

UBYTE

UINT