File: twod_matrix.cweb

package info (click to toggle)
dynare 4.5.7-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 49,408 kB
  • sloc: cpp: 84,998; ansic: 29,058; pascal: 13,843; sh: 4,833; objc: 4,236; yacc: 3,622; makefile: 2,278; lex: 1,541; python: 236; lisp: 69; xml: 8
file content (121 lines) | stat: -rw-r--r-- 3,109 bytes parent folder | download | duplicates (3)
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
@q $Id: twod_matrix.cweb 148 2005-04-19 15:12:26Z kamenik $ @>
@q Copyright 2004, Ondra Kamenik @>

@ Start of {\tt twod\_matrix.cpp} file.
@c
#include "twod_matrix.h"
#include "tl_exception.h"


@<|ConstTwoDMatrix| constructors@>;
@<|ConstTwoDMatrix::writeMat| code@>;
@<|TwoDMatrix| row methods code@>;
@<|TwoDMatrix| column methods code@>;
@<|TwoDMatrix::save| code@>;

@ 
@<|ConstTwoDMatrix| constructors@>=
ConstTwoDMatrix::ConstTwoDMatrix(const TwoDMatrix& m)
	: ConstGeneralMatrix(m)@+ {}

ConstTwoDMatrix::ConstTwoDMatrix(const TwoDMatrix& m, int first_col, int num)
	: ConstGeneralMatrix(m, 0, first_col, m.nrows(), num)@+ {}

ConstTwoDMatrix::ConstTwoDMatrix(const ConstTwoDMatrix& m, int first_col, int num)
	: ConstGeneralMatrix(m, 0, first_col, m.nrows(), num)@+ {}

ConstTwoDMatrix::ConstTwoDMatrix(int first_row, int num, const TwoDMatrix& m)
	: ConstGeneralMatrix(m, first_row, 0, num, m.ncols())@+ {}

ConstTwoDMatrix::ConstTwoDMatrix(int first_row, int num, const ConstTwoDMatrix& m)
	: ConstGeneralMatrix(m, first_row, 0, num, m.ncols())@+ {}

@ 
@<|ConstTwoDMatrix::writeMat| code@>=
void ConstTwoDMatrix::writeMat(mat_t* fd, const char* vname) const
{
#if MATIO_MAJOR_VERSION > 1 || (MATIO_MAJOR_VERSION == 1 && MATIO_MINOR_VERSION >= 5)
  size_t dims[2];
  const matio_compression compression = MAT_COMPRESSION_NONE;
#else
  int dims[2];
  const int compression = COMPRESSION_NONE;
#endif
  dims[0] = nrows();
  dims[1] = ncols();
  double *data = new double[nrows()*ncols()];
  
	for (int j = 0; j < ncols(); j++)
		for (int i = 0; i < nrows(); i++)
			data[j*nrows()+i] = get(i,j);

  matvar_t *v = Mat_VarCreate(vname, MAT_C_DOUBLE, MAT_T_DOUBLE, 2, dims, data, 0);

  Mat_VarWrite(fd, v, compression);

  Mat_VarFree(v);
  delete[] data;
}

@ 
@<|TwoDMatrix| row methods code@>=
void TwoDMatrix::copyRow(int from, int to)
{
	if (from != to)
		copyRow(ConstTwoDMatrix(*this), from, to);
}

void TwoDMatrix::copyRow(const ConstTwoDMatrix& m, int from, int to)
{
	ConstVector fr_row(from, m);
	Vector to_row(to, *this);
	to_row = fr_row;
}

void TwoDMatrix::addRow(double d, const ConstTwoDMatrix& m, int from, int to)
{
	ConstVector fr_row(from, m);
	Vector to_row(to, *this);
	to_row.add(d, fr_row);
}


@ 
@<|TwoDMatrix| column methods code@>=
void TwoDMatrix::copyColumn(int from, int to)
{
	if (from != to)
		copyColumn(ConstTwoDMatrix(*this), from, to);
}

void TwoDMatrix::copyColumn(const ConstTwoDMatrix& m, int from, int to)
{
	ConstVector fr_col(m, from);
	Vector to_col(*this, to);
	to_col = fr_col;
}

void TwoDMatrix::addColumn(double d, const ConstTwoDMatrix& m, int from, int to)
{
	ConstVector fr_col(m, from);
	Vector to_col(*this, to);
	to_col.add(d, fr_col);
}

@ 
@<|TwoDMatrix::save| code@>=
void TwoDMatrix::save(const char* fname) const
{
	FILE* fd;
	if (NULL==(fd = fopen(fname,"w"))) {
		TL_RAISE("Cannot open file for writing in TwoDMatrix::save");
	}
	for (int row = 0; row < nrows(); row++) {
		for (int col = 0; col < ncols(); col++)
			fprintf(fd, " %20.10g", get(row, col));
		fprintf(fd, "\n");
	}
	fclose(fd);	
}

@ End of {\tt twod\_matrix.cpp} file.