<< table | Tables | table2cell >> |
A = table2array(T) |
table object.
matrix: single, double, integer types, logical, char, string, struct, cell.
A = table2array(T) converts the input table T into a homogeneous array A, where the variables in T become the columns of A.
The output A does not retain the table properties from T.Properties.
If T is a table with row names, these row names will not be included in A.
A = magic(6);
T = array2table(A);
A = table2array(T)
Version | Description |
---|---|
1.8.0 | initial version |
Allan CORNET