1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
|
-
|
|
|
|
|
|
|
|
|
!
-
|
|
|
|
|
|
|
|
|
!
-
|
|
|
|
|
|
|
|
!
|
#module
#deffunc GetPval2 val, val
mref p1, 1024 mref p2, 49
repeat 8
p2.cnt = p1.cnt
loop
return
#deffunc length val, int
mref p1, 1024 mref p2, 1 mref statout, 64
i = p2+1
if (p2 < 1)|(p2 > 4) : i = 2
statout = p1.i
return
#global
#module
#deffunc MatrixMesDBug val, int, int
mref p1, 48
length p1,1
mm = stat
length p1,2
mn = stat
px = csrx : py = csry
if (mm=0)&(mn=0) : pos px, py : mes ""+p1 : return
if mm=0 : mm=1
if mn=0 : mn=1
repeat mn pos px, py
i = cnt
repeat mm mes ""+p1.cnt.i+"("+cnt+","+i+")"
loop
px = csrx+70
loop
return
#global
#module
#deffunc MatrixAdd val, val
mref m1, 48 mref m2, 49
mref statout, 64
length m1,1 : mm1 = stat
length m1,2 : mn1 = stat
length m2,1 : mm2 = stat
length m2,2 : mn2 = stat
statout = 0
if (mm1!mm2)|(mn1!mn2) : statout = 1 : return
repeat mm1
i = cnt
repeat mn1
m1.i.cnt = m1.i.cnt + m2.i.cnt
loop
loop
return
#deffunc MatrixSub val, val
mref m1, 48 mref m2, 49
mref statout, 64
length m1,1 : mm1 = stat
length m1,2 : mn1 = stat
length m2,1 : mm2 = stat
length m2,2 : mn2 = stat
statout = 0
if (mm1!mm2)|(mn1!mn2) : statout = 1 : return
repeat mm1
i = cnt
repeat mn1
m1.i.cnt = m1.i.cnt - m2.i.cnt
loop
loop
return
#deffunc MatrixMul val, val
mref m1, 48 mref m2, 49
mref statout, 64
length m1,1 : mm1 = stat
length m1,2 : mn1 = stat
length m2,1 : mm2 = stat
length m2,2 : mn2 = stat
statout = 0
if (mm1*mn1=0)&(mm2*mn2=0) : MtxMulOut = m1*m2 : return
if (mm1*mn1!0)&(mm2*mn2=0) {
dim MtxMulOut, mm1, mn1
repeat mn1
j = cnt
repeat mm1
i = cnt
MtxMulOut.i.j = m1.i.j * m2
loop
loop
return
}
if (mm1*mn1=0)&(mm2*mn2!0) {
dim MtxMulOut, mm2, mn2
repeat mn2
j = cnt
repeat mm2
i = cnt
MtxMulOut.i.j = m1 * m2.i.j
loop
loop
return
}
if mn1 ! mm2 : statout = 1 : return dim MtxMulOut, mm1, mn2
repeat mn2
j = cnt
repeat mm1
i = cnt
repeat mn1
MtxMulOut.i.j += m1.i.cnt * m2.cnt.j
loop
loop
loop
return
#deffunc MatrixMulOut val
mref m1, 48 mref statout, 64
length m1,1 : mm1 = stat
length m1,2 : mn2 = stat
length MtxMulOut,1 : mm1a = stat
length MtxMulOut,2 : mn2a = stat
if (mm1!mm1a)&(mn2=mn2a) : statout = 1 : return if (mm1=mm1a)&(mn2!mn2a) : statout = 2 : return if (mm1!mm1a)&(mn2!mn2a) : statout = 3 : return statout = 0
repeat mn2
j = cnt
repeat mm1
i = cnt
m1.i.j = MtxMulOut.i.j
loop
loop
return
#deffunc MatrixDiv val, int
mref m1, 48 mref s, 1
mref statout, 64
length m1,1 : mm1 = stat
length m1,2 : mn1 = stat
statout = 0
if s = 0 : statout = 1 : return if mm1*mn1 = 0 : m1 = m1/s : return
if mm1*mn1 ! 0 {
repeat mn1
j = cnt
repeat mm1
i = cnt
m1.i.j = m1.i.j / s
loop
loop
return
}
return
#deffunc MatrixDet val
mref m1, 48 mref statout, 64
length m1,1 : mm = stat
length m1,2 : mn = stat
statout = 0
if mm!mn : statout = 0 : return
j=0 : i=0
repeat mm
aa = 1
j = 0 : i = cnt
repeat mn
aa = aa * m1.j.i
if 3-2<j : j=0 : else : j++
if 3-2<i : i=0 : else : i++
loop
ab += aa
loop
repeat mm
aa = 1
j = 0 : i = cnt
repeat mn
aa = aa * m1.j.i
if 3-2<j : j=0 : else : j++
if 0>=i : i=3-1 : else : i--
loop
ab -= aa
loop
statout = ab
return
#deffunc MatrixT val, val
mref m1, 48 mref m2, 49
mref statout, 64
length m1,1 : mm = stat
length m1,2 : mn = stat
length m2,1 : mm2 = stat
length m2,2 : mn2 = stat
if (mm!mn2)&(mn=mm2) : statout = 1 : return if (mm=mn2)&(mn!mm2) : statout = 2 : return if (mm!mn2)&(mn!mm2) : statout = 3 : return statout =0
repeat mn2
j=cnt
repeat mm2
i=cnt
m1.j.i = m2.i.j
loop
loop
return
#deffunc MatrixMakeE val, int
mref m1, 48 mref statout, 64
length m1,1 : mm = stat
length m1,2 : mn = stat
if mm!mn : statout = 1 : return statout = 0
if mm = 0 : m1 = 1 : return
repeat mm
j=cnt
repeat mm
i=cnt
m1.i.j = i=j
loop
loop
return
#global
dim a,3,3
dim b,3,3
a = 1,2,3,4,5,6,7,8,9
b = 2,3,4,5,6,7,8,9,10
pos 0, 0 : mes "a"
MatrixMesDBug a
pos 0, csry+20 : mes "b"
MatrixMesDBug b
MatrixAdd a, b
pos 0, csry+20
mes "a+b"
MatrixMesDBug a
a = 1,2,3,4,5,6,7,8,9
b = 2,3,4,5,6,7,8,9,10
MatrixSub a, b
pos 0, csry+20
mes "a-b"
MatrixMesDBug a
dim c,3,3
a = 1,2,3,4,5,6,7,8,9
b = 2,3,4,5,6,7,8,9,10
MatrixMul a, b
MatrixMulOut c
pos 0, csry+20
mes "a*b"
MatrixMesDBug c
MatrixMakeE a
pos 220, 0
mes "E (I)"
MatrixMesDBug a
dim aa,3,2
dim bb,2,3
aa = 1,2,3,4,5,6
MatrixT bb, aa
pos 220, csry+20
mes "aa"
MatrixMesDBug aa
pos 220, csry+20
mes "aa^t"
MatrixMesDBug bb
a = 1,2,3,4,5,6,7,8,9
MatrixDet a
pos 220, csry+20
mes "|a| = " + stat
MatrixMesDBug a
a = 1,2,3,4,5,6,7,8,9
dim b,1
b = 10
MatrixMul a, b
MatrixMulOut c
pos 220, csry+20
mes "a*10"
MatrixMesDBug c
a = 1,2,3,4,5,6,7,8,9
MatrixDiv a, 2
pos 440, 0
mes "a/2"
MatrixMesDBug a
stop
|