CPPLapack
Main Page
Related Pages
Classes
Files
File List
File Members
All
Classes
Files
Functions
Variables
Friends
Pages
include
_dgematrix-
_dgematrix-constructor.hpp
Go to the documentation of this file.
1
//=============================================================================
2
/*! _dgematrix constructor without arguments */
3
inline
_dgematrix::_dgematrix
()
4
{CPPL_VERBOSE_REPORT;
5
m
=0;
6
n
=0;
7
array
=NULL;
8
darray
=NULL;
9
}
10
11
//=============================================================================
12
/*! _dgematrix copy constructor */
13
inline
_dgematrix::_dgematrix
(
const
_dgematrix
& mat)
14
{CPPL_VERBOSE_REPORT;
15
m
=mat.
m
;
16
n
=mat.
n
;
17
array
=mat.
array
;
18
darray
=mat.
darray
;
19
20
mat.
nullify
();
21
}
22
23
///////////////////////////////////////////////////////////////////////////////
24
///////////////////////////////////////////////////////////////////////////////
25
///////////////////////////////////////////////////////////////////////////////
26
27
//=============================================================================
28
/*! dgematrix destructor */
29
inline
_dgematrix::~_dgematrix
()
30
{CPPL_VERBOSE_REPORT;
31
delete
[]
darray
;
32
delete
[]
array
;
33
}
_dgematrix::darray
double ** darray
array of pointers of column head addresses
Definition:
_dgematrix.hpp:12
_dgematrix::m
CPPL_INT m
matrix row size
Definition:
_dgematrix.hpp:9
_dgematrix::_dgematrix
_dgematrix()
Definition:
_dgematrix-constructor.hpp:3
_dgematrix::array
double * array
1D array to store matrix data
Definition:
_dgematrix.hpp:11
_dgematrix::nullify
void nullify() const
Definition:
_dgematrix-misc.hpp:3
_dgematrix
(DO NOT USE) Smart-temporary Real Double-precision General Dence Matrix Class
Definition:
_dgematrix.hpp:3
_dgematrix::n
CPPL_INT n
matrix column size
Definition:
_dgematrix.hpp:10
_dgematrix::~_dgematrix
~_dgematrix()
Definition:
_dgematrix-constructor.hpp:29
Generated by
1.8.6