CPPLapack
Main Page
Related Pages
Classes
Files
File List
File Members
All
Classes
Files
Functions
Variables
Friends
Pages
include
_dgematrix-
_dgematrix-misc.hpp
Go to the documentation of this file.
1
//=============================================================================
2
/*! nullify all the matrix data */
3
inline
void
_dgematrix::nullify
()
const
4
{CPPL_VERBOSE_REPORT;
5
m
=0;
6
n
=0;
7
array
=NULL;
8
darray
=NULL;
9
}
10
11
//=============================================================================
12
/*! destroy all the matrix data */
13
inline
void
_dgematrix::destroy
()
const
14
{CPPL_VERBOSE_REPORT;
15
delete
[]
array
;
16
delete
[]
darray
;
17
array
=NULL;
18
darray
=NULL;
19
}
_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::array
double * array
1D array to store matrix data
Definition:
_dgematrix.hpp:11
_dgematrix::nullify
void nullify() const
Definition:
_dgematrix-misc.hpp:3
_dgematrix::n
CPPL_INT n
matrix column size
Definition:
_dgematrix.hpp:10
_dgematrix::destroy
void destroy() const
Definition:
_dgematrix-misc.hpp:13
Generated by
1.8.6