tf = istable(A)
| Parameter | Description |
|---|---|
| A | Input array. |
| Parameter | Description |
|---|---|
| tf | a logical: true if it is a table. |
tf = istable(A) returns true if A is a table, and false if it is not.
T = table();
istable(T)
M = magic(6);
istable(M)
| Version | Description |
|---|---|
| 1.8.0 | initial version |