istable

Determine if input is table.

📝 Syntax

  • tf = istable(A)

📥 Input argument

  • A - Input array.

📤 Output argument

  • 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.

💡 Example

T = table();
istable(T)
M = magic(6);
istable(M)

🔗 See also

isa, table.

🕔 History

Version
📄 Description

1.8.0

initial version

Last updated

Was this helpful?