This commit is contained in:
Ingy döt Net 2013-04-10 21:29:02 -07:00
parent 764da6cbbb
commit db842d013d
19005 changed files with 197040 additions and 7 deletions

View file

@ -0,0 +1,7 @@
REAL :: mtx(2, 4)
mtx = 1.1 * $
WRITE() mtx
SOLVE(Matrix=mtx, Transpose=mtx)
WRITE() mtx

View file

@ -0,0 +1,7 @@
1.1 2.2 3.3 4.4
5.5 6.6 7.7 8.8
1.1 5.5
2.2 6.6
3.3 7.7
4.4 8.8