linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Converts a banded matrix stored in dense form to a full matrix. More...
Public Member Functions | |
band_to_full_mtx_dbl | |
band_to_full_mtx_cmplx | |
Converts a banded matrix stored in dense form to a full matrix.
[in] | kl | The number of subdiagonals. Must be at least 0. |
[in] | ku | The number of superdiagonals. Must be at least 0. |
[in] | b | The banded matrix to convert, stored in dense form. See band_mtx_vec_mult for details on this storage method. |
[out] | f | The M-by-N element full matrix. |
[in,out] | err | An optional errors-based object that if provided can be used to retrieve information relating to any errors encountered during execution. If not provided, a default implementation of the errors class is used internally to provide error handling. Possible errors and warning messages that may be encountered are as follows.
|
Definition at line 4072 of file linalg.f90.