summaryrefslogtreecommitdiffstats
path: root/test/unit/math/gendata.m
blob: 5c13491d93ee78212326de6b57f1ea34fb226b61 (plain)
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
% Script in Octave for generating test data

1;

% Returns the minor matrix
function m = minor(A, r, c)

  m = A;
  m(r,:) = [];
  m(:,c) = [];

end;

% Returns the cofactor matrix
function m = cofactors(A)

  m = zeros(rows(A), columns(A));

  for r = [1 : rows(A)]
    for c = [1 : columns(A)]
      m(r, c) = det(minor(A, r, c));
      if (mod(r + c, 2) == 1)
        m(r, c) = -m(r, c);
      end;
    end;
  end;

end;

% Prints the matrix as C++ code
function printout(A, name)

  printf('const float %s[16] = \n', name);
  printf('{\n');

  for c = [1 : columns(A)]
    for r = [1 : rows(A)]
      printf('  %f', A(r,c));
      if (! ( (r == 4) && (c == 4) ) )
        printf(',');
      end;
      printf('\n');
    end;
  end;

  printf('};\n');

end;

printf('// Cofactors\n');
A = randn(4,4);
printout(A, 'COF_MAT');
printf('\n');
printout(cofactors(A), 'COF_RESULT');
printf('\n');

printf('\n');

printf('// Det\n');
A = randn(4,4);
printout(A, 'DET_MAT');
printf('\n');
printf('const float DET_RESULT = %f;', det(A));
printf('\n');

printf('\n');

printf('// Invert\n');
A = randn(4,4);
printout(A, 'INV_MAT');
printf('\n');
printout(inv(A), 'COF_RESULT');
printf('\n');

printf('\n');

printf('// Multiplication\n');
A = randn(4,4);
printout(A, 'MUL_A');
printf('\n');
B = randn(4,4);
printout(B, 'MUL_B');
printf('\n');
C = A * B;
printout(C, 'MUL_RESULT');
printf('\n');