CPPLapack
Main Page
Related Pages
Classes
Files
File List
File Members
All
Classes
Files
Functions
Variables
Friends
Pages
include
_dgbmatrix-
_dgbmatrix-misc.hpp
Go to the documentation of this file.
1
//=============================================================================
2
/*! nullify all the matrix data */
3
inline
void
_dgbmatrix::nullify
()
const
4
{CPPL_VERBOSE_REPORT;
5
m
=0;
6
n
=0;
7
kl
=0;
8
ku
=0;
9
array
=NULL;
10
darray
=NULL;
11
}
12
13
//=============================================================================
14
/*! destroy all the matrix data */
15
inline
void
_dgbmatrix::destroy
()
const
16
{CPPL_VERBOSE_REPORT;
17
delete
[]
array
;
18
delete
[]
darray
;
19
array
=NULL;
20
darray
=NULL;
21
}
_dgbmatrix::darray
double ** darray
array of pointers of column head addresses
Definition:
_dgbmatrix.hpp:14
_dgbmatrix::nullify
void nullify() const
Definition:
_dgbmatrix-misc.hpp:3
_dgbmatrix::ku
CPPL_INT ku
upper band width
Definition:
_dgbmatrix.hpp:12
_dgbmatrix::destroy
void destroy() const
Definition:
_dgbmatrix-misc.hpp:15
_dgbmatrix::kl
CPPL_INT kl
lower band width
Definition:
_dgbmatrix.hpp:11
_dgbmatrix::n
CPPL_INT n
matrix column size
Definition:
_dgbmatrix.hpp:10
_dgbmatrix::array
double * array
1D array to store matrix data
Definition:
_dgbmatrix.hpp:13
_dgbmatrix::m
CPPL_INT m
matrix row size
Definition:
_dgbmatrix.hpp:9
Generated by
1.8.6