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 tableT into a cell array C, where each variable inT is transformed into a column of cells in C.
The output C does not include any properties fromT.Properties.
If T contains row names, these will not be included inC.
💡 Example
🔗 See also
🕔 History
Version
📄 Description
1.8.0
initial version
Last updated
Was this helpful?