CPP Linear Algebra ToolBox  0.1.0
diagonalMatrix.h
Go to the documentation of this file.
1 
10 #ifndef DIAGONAL_MATRIX_H
11 #define DIAGONAL_MATRIX_H
12 
13 #include "vector.h"
14 
15 /* TYPE DIAGONAL MATRIX */
17 
18 /* METHODS */
19 double tr(const DiagonalMatrix & );
20 double det(const DiagonalMatrix & );
21 
22 #endif
A lightweight class describing a Vector object. Vectors are array with size n (>0) of doubles.
Definition: vector.h:25
Vector DiagonalMatrix
Definition: diagonalMatrix.h:16
double tr(const DiagonalMatrix &)
Definition: diagonalMatrix.cpp:3
double det(const DiagonalMatrix &)
Definition: diagonalMatrix.cpp:7
Header file for Vector class.