Go to the source code of this file.
std::ostream& operator<< |
( |
std::ostream & |
s, |
|
|
const dgbmatrix & |
mat |
|
) |
| |
|
inline |
Definition at line 62 of file dgbmatrix-io.hpp.
References i(), dgbmatrix::kl, dgbmatrix::ku, dgbmatrix::m, and dgbmatrix::n.
64 for(CPPL_INT
i=0;
i<mat.
m;
i++){
65 for(CPPL_INT j=0; j<mat.
n; j++){
66 if(
i-j>mat.
kl || j-
i>mat.
ku ){ s <<
" x"; }
67 else{ s <<
" " << mat(
i,j); }
CPPL_INT m
matrix row size
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT kl
lower band width
CPPL_INT ku
upper band width
CPPL_INT n
matrix column size