-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathinv.coffee
More file actions
257 lines (195 loc) · 4.14 KB
/
Copy pathinv.coffee
File metadata and controls
257 lines (195 loc) · 4.14 KB
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
#-----------------------------------------------------------------------------
#
# Input: Matrix on stack (must have two dimensions but
# it can be non-numerical)
#
# Output: Inverse on stack
#
# Example:
#
# > inv(((1,2),(3,4))
# ((-2,1),(3/2,-1/2))
#
# > inv(((a,b),(c,d))
# ((d / (a d - b c),-b / (a d - b c)),(-c / (a d - b c),a / (a d - b c)))
#
# Note:
#
# THIS IS DIFFERENT FROM INVERSE OF AN EXPRESSION (inv)
# Uses Gaussian elimination for numerical matrices.
#
#-----------------------------------------------------------------------------
INV_check_arg = ->
if (!istensor(p1))
return 0
else if (p1.tensor.ndim != 2)
return 0
else if (p1.tensor.dim[0] != p1.tensor.dim[1])
return 0
else
return 1
inv = ->
i = 0
n = 0
#U **a
save()
p1 = pop()
# an inv just goes away when
# applied to another inv
if (isinv(p1))
push car(cdr(p1))
restore()
return
# inverse goes away in case
# of identity matrix
if isidentitymatrix(p1)
push p1
restore()
return
# distribute the inverse of a dot
# if in expanding mode
# note that the distribution happens
# in reverse.
# The dot operator is not
# commutative, so, it matters.
if (expanding && isinnerordot(p1))
p1 = cdr(p1)
accumulator = []
while (iscons(p1))
accumulator.push car(p1)
p1 = cdr(p1)
for eachEntry in [accumulator.length-1..0]
push(accumulator[eachEntry])
inv()
if eachEntry != accumulator.length-1
inner()
restore()
return
if (INV_check_arg() == 0)
push_symbol(INV)
push(p1)
list(2)
restore()
return
if isNumericAtomOrTensor p1
yyinvg()
else
push(p1)
adj()
push(p1)
det()
p2 = pop()
if (isZeroAtomOrTensor(p2))
stop("inverse of singular matrix")
push(p2)
divide()
restore()
invg = ->
save()
p1 = pop()
if (INV_check_arg() == 0)
push_symbol(INVG)
push(p1)
list(2)
restore()
return
yyinvg()
restore()
# inverse using gaussian elimination
yyinvg = ->
h = 0
i = 0
j = 0
n = 0
n = p1.tensor.dim[0]
h = tos
for i in [0...n]
for j in [0...n]
if (i == j)
push(one)
else
push(zero)
for i in [0...(n * n)]
push(p1.tensor.elem[i])
INV_decomp(n)
p1 = alloc_tensor(n * n)
p1.tensor.ndim = 2
p1.tensor.dim[0] = n
p1.tensor.dim[1] = n
for i in [0...(n * n)]
p1.tensor.elem[i] = stack[h + i]
moveTos tos - 2 * n * n
push(p1)
#-----------------------------------------------------------------------------
#
# Input: n * n unit matrix on stack
#
# n * n operand on stack
#
# Output: n * n inverse matrix on stack
#
# n * n garbage on stack
#
# p2 mangled
#
#-----------------------------------------------------------------------------
#define A(i, j) stack[a + n * (i) + (j)]
#define U(i, j) stack[u + n * (i) + (j)]
INV_decomp = (n) ->
a = 0
d = 0
i = 0
j = 0
u = 0
a = tos - n * n
u = a - n * n
for d in [0...n]
# diagonal element zero?
if (equal( (stack[a + n * (d) + (d)]) , zero))
# find a new row
for i in [(d + 1)...n]
if (!equal( (stack[a + n * (i) + (d)]) , zero))
break
if (i == n)
stop("inverse of singular matrix")
# exchange rows
for j in [0...n]
p2 = stack[a + n * (d) + (j)]
stack[a + n * (d) + (j)] = stack[a + n * (i) + (j)]
stack[a + n * (i) + (j)] = p2
p2 = stack[u + n * (d) + (j)]
stack[u + n * (d) + (j)] = stack[u + n * (i) + (j)]
stack[u + n * (i) + (j)] = p2
# multiply the pivot row by 1 / pivot
p2 = stack[a + n * (d) + (d)]
for j in [0...n]
if (j > d)
push(stack[a + n * (d) + (j)])
push(p2)
divide()
stack[a + n * (d) + (j)] = pop()
push(stack[u + n * (d) + (j)])
push(p2)
divide()
stack[u + n * (d) + (j)] = pop()
# clear out the column above and below the pivot
for i in [0...n]
if (i == d)
continue
# multiplier
p2 = stack[a + n * (i) + (d)]
# add pivot row to i-th row
for j in [0...n]
if (j > d)
push(stack[a + n * (i) + (j)])
push(stack[a + n * (d) + (j)])
push(p2)
multiply()
subtract()
stack[a + n * (i) + (j)] = pop()
push(stack[u + n * (i) + (j)])
push(stack[u + n * (d) + (j)])
push(p2)
multiply()
subtract()
stack[u + n * (i) + (j)] = pop()