<< table Timeseries/Table table2matrix >>

Scilab Help >> Spreadsheet > Timeseries/Table > table2cell

table2cell

convert a table into a cell

Syntax

m = table2cell(t)

Arguments

t

table object

m

cell of the same size as t

Description

table2cell converts a table into a cell. The data of t can be heterogeneous to convert them to a cell. If t is a table with row names, then the data is lost.

Examples

m = table2cell(t)

t = table([1; 4; 7], datetime(2023, 7:9, 15)', [%f; %t; %t])
m = table2cell(t)

x = ["a"; "b"; "c"];
t.Properties.RowNames = x
m = table2cell(t)

See also

History

VersionDescription
2024.0.0 Introduction in Scilab.

Report an issue
<< table Timeseries/Table table2matrix >>