table

Methods

Method Reference: table.table2array

table: A = table2array (tbl)

Converts a table to a homogeneous array.

Source Code: table

Example: 1

table2array horizontally concatenates the variables into a single array, so it is meant for tables whose variables share a common type. Multi-column variables keep all their columns, so the result can be wider than the table.

 Age = [38; 43; 40];
 BloodPressure = [124, 93; 109, 77; 117, 75];
 T = table (Age, BloodPressure)
T =
  3x2 table

    Age    BloodPressure    
    ___    _____________    

     38        124    93    
     43        109    77    
     40        117    75
 A = table2array (T)
A =

    38   124    93
    43   109    77
    40   117    75

The 3-by-2 table becomes a 3-by-3 numeric matrix, because BloodPressure contributes two columns.

 size (A)
ans =

   3   3