istable
Determine if input is table.
📝Syntax
tf = istable(A)
📥Input Arguments
Parameter Description
A Input array.
📤Output Arguments
Parameter Description
tf a logical: true if it is a table.
📄Description

tf = istable(A) returns true if A is a table, and false if it is not.

💡Examples
T = table();
istable(T)
M = magic(6);
istable(M)
🔗See Also
isatable
🕔Version History
Version Description
1.8.0 initial version
Edit this page on GitHub