libpointer_isNull
Checks if libpointer handle points on NULL pointer.
📝Syntax
tf = isNull(h)
tf = h.isNull()
📥Input Arguments
Parameter Description
h a libpointer handle.
📤Output Arguments
Parameter Description
tf a logical.
📄Description

Checks if libpointer handle points on NULL pointer.

💡Examples
p = libpointer('int8Ptr', int8([3 4]));
p.isNull()
p2 = libpointer()
p2.isNull()
isNull(p2)
🔗See Also
libpointer
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub