-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathlight_matrix.c
402 lines (338 loc) · 7.9 KB
/
light_matrix.c
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
/*
* Light Matrix: C code implementation for basic matrix operation
*
* Copyright (C) 2017 Jiachi Zou
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This code is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with code. If not, see <http:#www.gnu.org/licenses/>.
*/
#include "light_matrix.h"
#include <stdio.h>
#include <stdlib.h>
#define MAT_LEGAL_CHECKING
#define min(a, b) ((a) > (b) ? (b) : (a))
#define equal(a, b) ((a-b)<1e-7 && (a-b)>-(1e-7))
/************************************************************************/
/* Private Function */
/************************************************************************/
void swap(int *a, int *b)
{
int m;
m = *a;
*a = *b;
*b = m;
}
void perm(int list[], int k, int m, int* p, Mat* mat, float* det)
{
int i;
if(k > m){
float res = mat->element[0][list[0]];
for(i = 1; i < mat->row ; i++){
res *= mat->element[i][list[i]];
}
if(*p%2){
//odd is negative
*det -= res;
}else{
//even is positive
*det += res;
}
}
else{
// if the element is 0, we don't need to calculate the value for this permutation
if(!equal(mat->element[k][list[k]], 0.0f))
perm(list, k + 1, m, p, mat, det);
for(i = k+1; i <= m; i++)
{
if(equal(mat->element[k][list[i]], 0.0f))
continue;
swap(&list[k], &list[i]);
*p += 1;
perm(list, k + 1, m, p, mat, det);
swap(&list[k], &list[i]);
*p -= 1;
}
}
}
/************************************************************************/
/* Public Function */
/************************************************************************/
Mat* MatCreate(Mat* mat, int row, int col)
{
int i;
mat->element = (float**)malloc(row * sizeof(float*));
if(mat->element == NULL){
printf("mat create fail!\n");
return NULL;
}
for(i = 0 ; i < row ; i++){
mat->element[i] = (float*)malloc(col * sizeof(float));
if(mat->element[i] == NULL){
int j;
printf("mat create fail!\n");
for(j = 0 ; j < i ; j++)
free(mat->element[j]);
free(mat->element);
return NULL;
}
}
mat->row = row;
mat->col = col;
return mat;
}
void MatDelete(Mat* mat)
{
int i;
for(i = 0 ; i<mat->row ; i++)
free(mat->element[i]);
free(mat->element);
}
Mat* MatSetVal(Mat* mat, float* val)
{
int row,col;
for(row = 0 ; row < mat->row ; row++){
for(col = 0 ; col < mat->col ; col++){
mat->element[row][col] = val[col + row * mat->col];
}
}
return mat;
}
void MatDump(const Mat* mat)
{
int row,col;
#ifdef MAT_LEGAL_CHECKING
if(mat == NULL){
return ;
}
#endif
printf("Mat %dx%d:\n", mat->row, mat->col);
for(row = 0 ; row < mat->row ; row++){
for(col = 0 ; col < mat->col ; col++){
printf("%.4f\t", mat->element[row][col]);
}
printf("\n");
}
}
Mat* MatZeros(Mat* mat)
{
int row,col;
for(row = 0 ; row < mat->row ; row++){
for(col = 0 ; col < mat->col ; col++){
mat->element[row][col] = 0.0f;
}
}
return mat;
}
Mat* MatEye(Mat* mat)
{
int i;
MatZeros(mat);
for(i = 0 ; i < min(mat->row, mat->col) ; i++){
mat->element[i][i] = 1.0f;
}
return mat;
}
/* dst = src1 + src2 */
Mat* MatAdd(Mat* src1, Mat* src2, Mat* dst)
{
int row, col;
#ifdef MAT_LEGAL_CHECKING
if( !(src1->row == src2->row && src2->row == dst->row && src1->col == src2->col && src2->col == dst->col) ){
printf("err check, unmatch matrix for MatAdd\n");
MatDump(src1);
MatDump(src2);
MatDump(dst);
return NULL;
}
#endif
for(row = 0 ; row < src1->row ; row++){
for(col = 0 ; col < src1->col ; col++){
dst->element[row][col] = src1->element[row][col] + src2->element[row][col];
}
}
return dst;
}
/* dst = src1 - src2 */
Mat* MatSub(Mat* src1, Mat* src2, Mat* dst)
{
int row, col;
#ifdef MAT_LEGAL_CHECKING
if( !(src1->row == src2->row && src2->row == dst->row && src1->col == src2->col && src2->col == dst->col) ){
printf("err check, unmatch matrix for MatSub\n");
MatDump(src1);
MatDump(src2);
MatDump(dst);
return NULL;
}
#endif
for(row = 0 ; row < src1->row ; row++){
for(col = 0 ; col < src1->col ; col++){
dst->element[row][col] = src1->element[row][col] - src2->element[row][col];
}
}
return dst;
}
/* dst = src1 * src2 */
Mat* MatMul(Mat* src1, Mat* src2, Mat* dst)
{
int row, col;
int i;
float temp;
#ifdef MAT_LEGAL_CHECKING
if( src1->col != src2->row || src1->row != dst->row || src2->col != dst->col ){
printf("err check, unmatch matrix for MatMul\n");
MatDump(src1);
MatDump(src2);
MatDump(dst);
return NULL;
}
#endif
for(row = 0 ; row < dst->row ; row++){
for(col = 0 ; col < dst->col ; col++){
temp = 0.0f;
for(i = 0 ; i < src1->col ; i++){
temp += src1->element[row][i] * src2->element[i][col];
}
dst->element[row][col] = temp;
}
}
return dst;
}
/* dst = src' */
Mat* MatTrans(Mat* src, Mat* dst)
{
int row, col;
#ifdef MAT_LEGAL_CHECKING
if( src->row != dst->col || src->col != dst->row ){
printf("err check, unmatch matrix for MatTranspose\n");
MatDump(src);
MatDump(dst);
return NULL;
}
#endif
for(row = 0 ; row < dst->row ; row++){
for(col = 0 ; col < dst->col ; col++){
dst->element[row][col] = src->element[col][row];
}
}
return dst;
}
// return det(mat)
float MatDet(Mat* mat)
{
float det = 0.0f;
int plarity = 0;
int *list;
int i;
#ifdef MAT_LEGAL_CHECKING
if( mat->row != mat->col){
printf("err check, not a square matrix for MatDetermine\n");
MatDump(mat);
return 0.0f;
}
#endif
list = (int*)malloc(sizeof(int)*mat->col);
if(list == NULL){
printf("malloc list fail\n");
return NULL;
}
for(i = 0 ; i < mat->col ; i++)
list[i] = i;
perm(list, 0, mat->row-1, &plarity, mat, &det);
free(list);
return det;
}
// dst = adj(src)
Mat* MatAdj(Mat* src, Mat* dst)
{
Mat smat;
int row, col;
int i,j,r,c;
float det;
#ifdef MAT_LEGAL_CHECKING
if( src->row != src->col || src->row != dst->row || src->col != dst->col){
printf("err check, not a square matrix for MatAdj\n");
MatDump(src);
MatDump(dst);
return NULL;
}
#endif
MatCreate(&smat, src->row-1, src->col-1);
for(row = 0 ; row < src->row ; row++){
for(col = 0 ; col < src->col ; col++){
r = 0;
for(i = 0 ; i < src->row ; i++){
if(i == row)
continue;
c = 0;
for(j = 0; j < src->col ; j++){
if(j == col)
continue;
smat.element[r][c] = src->element[i][j];
c++;
}
r++;
}
det = MatDet(&smat);
if((row+col)%2)
det = -det;
dst->element[col][row] = det;
}
}
MatDelete(&smat);
return dst;
}
// dst = src^(-1)
Mat* MatInv(Mat* src, Mat* dst)
{
Mat adj_mat;
float det;
int row, col;
#ifdef MAT_LEGAL_CHECKING
if( src->row != src->col || src->row != dst->row || src->col != dst->col){
printf("err check, not a square matrix for MatInv\n");
MatDump(src);
MatDump(dst);
return NULL;
}
#endif
MatCreate(&adj_mat, src->row, src->col);
MatAdj(src, &adj_mat);
det = MatDet(src);
if(equal(det, 0.0f)){
printf("err, determinate is 0 for MatInv\n");
return NULL;
}
for(row = 0 ; row < src->row ; row++){
for(col = 0 ; col < src->col ; col++)
dst->element[row][col] = adj_mat.element[row][col]/det;
}
MatDelete(&adj_mat);
return dst;
}
void MatCopy(Mat* src, Mat* dst)
{
int row, col;
#ifdef MAT_LEGAL_CHECKING
if( src->row != dst->row || src->col != dst->col){
printf("err check, unmathed matrix for MatCopy\n");
MatDump(src);
MatDump(dst);
return ;
}
#endif
for(row = 0 ; row < src->row ; row++){
for(col = 0 ; col < src->col ; col++)
dst->element[row][col] = src->element[row][col];
}
}