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