13

Seeking information on undocumented function TableView. Exempli gratia,

tab=Table[Table[If[Mod[i,Prime[j]]==1,1,0],{i,1,10}],{j,1,2}]
tab//TableView

$ $

{{1, 0, 1, 0, 1, 0, 1, 0, 1, 0}, {1, 0, 0, 1, 0, 0, 1, 0, 0, 1}}

enter image description here

Carl
  • 695
  • 4
  • 16

1 Answers1

7

Finally... TableView arrives in version 12.1:

enter image description here

kglr
  • 394,356
  • 18
  • 477
  • 896
  • 1
    This is a great start, but deleting entries does not actually delete them when you use the Dynamic expression internally. It's good for adding stuff, though - just don't make a mistake! I may make a bug report for this. – Ghersic Apr 27 '20 at 19:39
  • I'm using Mathematica 12.0 and the issue of dynamic deleting seems to work fine – JuanC97 Aug 11 '23 at 19:37