-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMatrixContiguous.h
250 lines (211 loc) · 5.82 KB
/
MatrixContiguous.h
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
/*
* File: MatrixRowMajor.h
* Author: mdesana
*
* Created on November 18, 2016, 10:44 AM
*/
#pragma once
#include <assert.h>
#include <iostream>
#include <math.h>
#include <sstream>
#include <string>
#include <vector>
#include <cstring>
#include "Common.h"
/*a matrix that can be efficiently processed in raster order and holds things in a contiguous memory spape (a vector)*/
template <typename T>
class MatrixContiguous
{
// std::vector< std::vector<T> > m_elements;
std::vector<T> m_elements;
int m_rows, m_cols, m_size;
inline int ComputeIndex(int r, int c) const
{
assert(c >= 0 && c < m_cols && r >= 0 && r < m_rows);
int ind = r * m_cols + c;
assert(ind < m_size);
return ind;
}
public:
MatrixContiguous()
{
m_rows = 0;
m_cols = 0;
m_size = 0;
m_elements = std::vector<T>();
// std::cout<<"creating empty MatrixContiguous "<<this<<std::endl<<ToString()<<std::endl;
}
// ~MatrixContiguous()
// {
// std::cout<<"deleting MatrixContiguous "<<this<<std::endl<<ToString()<<std::endl;
// }
inline int Size()
{
return m_size;
}
MatrixContiguous(int rows, int cols)
{
// todo redo more efficient
assert(rows > 0 && cols > 0);
m_elements = std::vector<T>(rows * cols);
m_cols = cols;
m_rows = rows;
m_size = cols*rows;
// std::cout<<"creating MatrixContiguous"<<m_rows<<" x "<< m_cols<<std::endl;
}
void Increment(int r, int c, T val)
{
m_elements[ComputeIndex(r, c)] += val;
}
// MatrixContiguous<T>& operator=(const MatrixContiguous<T>& rhs)
// {
// m_size = rhs.m_size;
// m_cols = rhs.m_cols;
// m_rows = rhs.m_rows;
// m_elements = rhs.m_elements;
//
// return *this;
// }
std::vector<T> ComputeRow(int r) const
{
std::vector<T> out(m_cols);
for (int c = 0; c < m_cols; c++)
out[c] = m_elements[ComputeIndex(r, c)];
return out;
}
std::vector<T> ComputeColumn(int c) const
{
std::vector<T> out(m_rows);
for (int r = 0; r < m_rows; r++)
out[r] = m_elements[ComputeIndex(r, c)];
return out;
}
void Sum(const MatrixContiguous<T>& other)
{
assert(other.nCols() == this->nCols() && other.nRows() == this->nRows());
for (int i = 0; i < m_size; i++)
m_elements[i] += other.m_elements[i];
}
void SetVal(int r, int c, T val)
{
m_elements[ComputeIndex(r, c)] = val;
}
// void Increment(int r, int c, T val)
// {
// m_elements[ComputeIndex(r, c)] += val;
// }
T GetVal(int r, int c) const
{
//TODO
return m_elements[ComputeIndex(r, c)];
}
T& EditVal(int r, int c)
{
//TODO
return m_elements[ComputeIndex(r, c)];
}
bool empty() const
{
return m_elements.empty();
}
void AddLogVal(int r, int c, const T& logVal)
{
int ind = ComputeIndex(r, c);
T el = m_elements[ind];
if (el == ZERO_LOGVAL)
m_elements[ind] = logVal;
else
m_elements[ind] = AddLog(el, logVal);
}
void ApplyLog()
{
for (int i = 0; i < m_size; i++)
m_elements[i] = log(m_elements[i]);
}
bool HasNan() const
{
for (int i = 0; i < m_size; i++)
if (isnan(m_elements[i]))
return true;
return false;
}
// void Sum(const MatrixContiguous<T>& other)
// {
// assert(other.nCols() == this->nCols() && other.nRows() == this->nRows());
// const std::vector<T>& otherElems = other.m_elements;
// for (int i = 0; i < m_size; i++)
// m_elements[i] += otherElems[i];
// }
std::string ToString() const
{
std::stringstream s;
for (int i = 0; i < m_rows; i++)
{
s << " [";
for (int j = 0; j < m_cols; j++)
{
s << GetVal(i, j) << ", ";
}
s << "]\n";
}
return s.str();
}
std::string ToStringExponentiated() const
{
std::stringstream s;
for (int i = 0; i < m_rows; i++)
{
s << " [";
for (int j = 0; j < m_cols; j++)
{
s << exp(GetVal(i, j)) << ", ";
}
s << "]\n";
}
return s.str();
}
MatrixContiguous<T> Transposed()
{
MatrixContiguous<T> tr(this->nCols(), this->nRows());
for (int r = 0; r < nRows(); r++)
{
for (int c = 0; c < nCols(); c++)
tr.SetVal(c, r, GetVal(r, c));
}
return tr;
}
int nRows() const
{
return m_rows;
}
int nCols() const
{
return m_cols;
}
void SetVal(T val)
{
// std::fill(m_elements, m_elements + m_size , val);
for (int i = 0; i < m_size; i++)
m_elements[i] = val;
}
static void Test()
{
MatrixContiguous<double> mat(2, 3);
mat.SetVal(0.4);
std::cout << mat.ToString() << std::endl;
for (int i = 0; i < mat.nRows(); i++)
for (int j = 0; j < mat.nCols(); j++)
{
std::cout << "elem for index " << i << " " << j << " is " << mat.ComputeIndex(i, j) << std::endl;
mat.SetVal(i, j, i + j);
}
std::cout << mat.ToString() << std::endl;
MatrixContiguous<double> m2;
m2 = mat;
m2.SetVal(0, 0, 10);
std::cout << " values after duplication\n";
std::cout << mat.ToString() << std::endl;
std::cout << m2.ToString() << std::endl;
}
};