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

 

UINT, UINT16

Purpose:

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

Syntax:

UINT

UINT16

Expansion:

4

Example:

writeb("MYFILE",UINT)

 

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

Example:

writeb("MYFILE",UINT16)

 

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

Remarks:

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

See Also:

DOUBLE

FLOAT

INT64

LONG

READB

SBYTE

SINT

UBYTE

UINT64

ULONG

WRITEB