#include <MatrixFuncs.h>
|
static unsigned int | GetRequiredStorageSize (unsigned int rows, unsigned int columns, unsigned int nSubSuperDiags) |
|
Definition at line 301 of file MatrixFuncs.h.
◆ GetRequiredStorageSize()
unsigned int Nektar::TriangularBandedMatrixFuncs::GetRequiredStorageSize |
( |
unsigned int |
rows, |
|
|
unsigned int |
columns, |
|
|
unsigned int |
nSubSuperDiags |
|
) |
| |
|
static |
Definition at line 382 of file MatrixFuncs.cpp.
385 ASSERTL0(rows == columns,
"Triangular matrices must be square.");
386 return (nSubSuperDiags + 1) * columns;
#define ASSERTL0(condition, msg)
References ASSERTL0.