note:
E | edittable |
edittable(D)
D = data table: unboxed or boxed table
numeric - undoxed and boxed
text - boxed
numeric/text - boxed
saved as NEWTABLE on exit
NEWTABLE is boxed with numeric and text data
Sample data tables
A =: i. 10 10
A1 =: <"0 i. 10 10
B =: 10 10 $ <'Text'
C =: A1,.B
edittable i. 6 6 NB. Numeric data table
>NEWTABLE NB. Numeric data table
edittable 5 6 $ <'Text' NB. Text data table
NEWTABLE
edittable A
edittable A1
edittable B
edittable C
Create a table
edittable 1 10 $ 0 NB. create a new table