mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-02 04:39:01 +00:00
9 lines
89 B
QBasic
9 lines
89 B
QBasic
|
|
data 1,2,3,4
|
||
|
|
mat read a(2,2)
|
||
|
|
mat print a
|
||
|
|
mat b=inv(a)
|
||
|
|
mat print b
|
||
|
|
mat c=a*b
|
||
|
|
mat print c
|
||
|
|
|