linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Converts a dense matrix to a banded matrix. More...
Public Member Functions | |
dense_to_banded_dbl | |
dense_to_banded_cmplx | |
Converts a dense matrix to a banded matrix.
[in] | m | The M-by-N dense matrix. |
[in] | kl | The number of subdiagonals. Must be at least 0. |
[in] | ku | The number of superdiagonals. Must be at least 0. |
[out] | x | The (KL+KU+1)-by-N banded 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 4188 of file linalg.f90.