8 lines
91 B
Text
8 lines
91 B
Text
|
|
REAL :: mtx(2, 4)
|
||
|
|
|
||
|
|
mtx = 1.1 * $
|
||
|
|
WRITE() mtx
|
||
|
|
|
||
|
|
SOLVE(Matrix=mtx, Transpose=mtx)
|
||
|
|
WRITE() mtx
|