arpackpp icon indicating copy to clipboard operation
arpackpp copied to clipboard

Arpack++ with patches (C++ interface to ARPACK)

Results 2 arpackpp issues
Sort by recently updated
recently updated
newest added

The problem I'm solving is a truncated SVD, so following an example in the documentation, I'm using `ARSymStdEig` with `ARdsNonSymMatrix` in the following way: ```c++ typedef ARdsNonSymMatrix ArMatrix; ArMatrix ar_matrix(n_rows,...

Hello, i recently found a problem in the _arpackpp_ library when trying to compute eigenvalues of very large matrices. This is caused by an integer overflow in the _Prepare_ function...