コード例 #1
0
ファイル: Vector.cpp プロジェクト: AnushikS/dynare
Vector::Vector(int row, GeneralMatrix& m)
	: len(m.numCols()), s(m.getLD()), data(&(m.get(row, 0))), destroy(false)
{
}
コード例 #2
0
ファイル: Vector.cpp プロジェクト: AnushikS/dynare
Vector::Vector(GeneralMatrix& m, int col)
	: len(m.numRows()), s(1), data(&(m.get(0, col))), destroy(false)
{
}