table2cell
Convert table to cell array
Syntax
S = table2cell(T)
S = table2cell(T, "ToScalar", true)
Input argument
T - a table object
Output argument
C - Cell array.
Description
C = table2cell(T) converts the table T into a cell array C, where each variable in T is transformed into a column of cells in C.
The output C does not include any properties from T.Properties.
If T contains row names, these will not be included in C.
Example
See also
History
Version | Description |
---|---|
1.8.0 | initial version |
Author
Allan CORNET
Last updated