isuint32

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

📝 Syntax

  • res = isuint32(var)

📥 Input argument

  • var - a variable

📤 Output argument

  • res - a logical: true or false

📄 Description

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

💡 Examples

A = 3;
res = isuint32(A)
B = uint32(3);
res = isuint32(B)

🔗 See also

isa, uint32, isinteger.

🕔 History

Version
📄 Description

1.0.0

initial version

Last updated

Was this helpful?