Skip to content
Snippets Groups Projects

Resolve "Simplify the Table syntax"

Merged Ivan Kondov requested to merge 153-simplify-the-table-syntax into master
8 files
+ 23
25
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 2
2
@@ -293,11 +293,11 @@ The *Table* data structure consists of an ordered set of Series parameters of th
```
t1 = ((numbers: 1, 2, 3), (lengths: 1., 2., 3.) [nm])
t2 = Table with columns = ((numbers: 1, 2, 3), s2)
t2 = Table ((numbers: 1, 2, 3), s2)
s2 = (lengths: 1., 2., 3.) [nm]
```
The *rows* of the Table are Tuples of Series elements with the same position.
The *rows* of the Table are Tuples of the Series elements at the same position (see subscripting operations below).
### Arrays
Loading