We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a1a1c7 commit f8fd575Copy full SHA for f8fd575
include/cinolib/matrix_eigenfunctions.cpp
@@ -65,7 +65,7 @@ bool matrix_eigenfunctions(const Eigen::SparseMatrix<double> & m,
65
eigs.compute(Spectra::SortRule::LargestMagn); // largest beacuse it's inverted
66
if(eigs.info()!=Spectra::CompInfo::Successful) return false;
67
// assemble output data
68
- auto basis_func = eigs.eigenvectors();
+ Eigen::MatrixXd basis_func = eigs.eigenvectors();
69
for(int fid=0; fid<basis_func.cols(); ++fid)
70
{
71
double min = max_double;
0 commit comments