Virtual Testbed
Ship dynamics simulator for extreme conditions
|
Public Member Functions | |
Vector< T > | forward_substitution (const Vector< T > &b) const |
Forward substitution. More... | |
Vector< T > | backward_substitution (const Vector< T > &y) const |
Backward substitution. More... | |
Vector< T > | solve (const Vector< T > &b) const |
![]() | |
Matrix (base_type rhs) | |
bool | is_square () const |
bool | is_symmetric () const |
bool | is_symmetric (T eps) const |
bool | is_positive_definite () const |
bool | is_toeplitz () const |
bool | is_toeplitz (T eps) const |
Square_matrix< T > | inverse () const |
Square_matrix< T > & | inverse_self () |
Matrix< T > | transpose () const |
void | transpose_self () |
Definition at line 117 of file linear_algebra.hh.
auto vtb::linalg::Lower_triangular_matrix< T >::backward_substitution | ( | const Vector< T > & | y | ) | const |
Backward substitution.
Solves \(L x = y\).
Definition at line 105 of file linear_algebra.cc.
auto vtb::linalg::Lower_triangular_matrix< T >::forward_substitution | ( | const Vector< T > & | b | ) | const |
Forward substitution.
Solves \(L y = b\).
Definition at line 85 of file linear_algebra.cc.