isuint64

Return true if variable var is an unsigned 64-bit integer type array.

Syntax

  • res = isuint64(var)

Input argument

  • var - a variable

Output argument

  • res - a logical: true or false

Description

isuint64 returns a logical 1if the argument is an unsigned 64-bit integer array and a logical 0 otherwise.

Examples

A = 3;
res = isuint64(A)
B = uint64(3);
res = isuint64(B)

See also

isa, uint64, isinteger.

History

Author

Allan CORNET

Last updated