June 2018 Update

This commit is contained in:
Ingy döt Net 2018-06-22 20:57:24 +00:00
parent ba8067c3b7
commit 22f33d4004
5278 changed files with 84726 additions and 14379 deletions

View file

@ -0,0 +1,16 @@
. mat a=1,2,3\4,5,6
. mat b=a'
. mat list a
a[2,3]
c1 c2 c3
r1 1 2 3
r2 4 5 6
. mat list b
b[3,2]
r1 r2
c1 1 4
c2 2 5
c3 3 6

View file

@ -0,0 +1,21 @@
: a=1,1i
: a
1 2
+-----------+
1 | 1 1i |
+-----------+
: a'
1
+-------+
1 | 1 |
2 | -1i |
+-------+
: transposeonly(a)
1
+------+
1 | 1 |
2 | 1i |
+------+