Implement max_off_diag_symmetric

This commit is contained in:
2023-09-17 16:56:17 +02:00
parent 942a58b1dc
commit 7e78f68630
3 changed files with 30 additions and 0 deletions

View File

@@ -13,4 +13,6 @@ arma::mat create_tridiagonal(int n, double a, double d, double e);
arma::mat create_symmetric_tridiagonal(int n, double a, double d);
double max_offdiag_symmetric(arma::mat& A, int& k, int& l);
#endif