apjanke / octave-tablicious

Table (relational, tabular data) implementation for GNU Octave
https://apjanke.github.io/octave-tablicious/
GNU General Public License v3.0
28 stars 11 forks source link

row indexing fails for nested tables #92

Closed rdzman closed 6 months ago

rdzman commented 2 years ago
sub_T = table([1;2;3]);
T1 = table(sub_T);
T2 = T1([1;3], :);

... results in the following error.

error: out(3,_): out of bound 1 (dimensions are 1x1)
error: called from
    subsetrows at line 3366 column 31
    subsref at line 864 column 15