Created
October 4, 2015 21:42
-
-
Save ssylvan/916c837d2b2dd67d4218 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Eigen::SparseMatrix<float> A(numRows, numCols); | |
Eigen::SparseVector<float> r(numCols); | |
A.row(0) = r; | |
// Comment the last line out, and no compiler errors. | |
// Leave it in and get errors about missing resize: | |
// eigen\src\sparsecore\sparsematrixbase.h(209): error C2039: 'resize': is not a member of 'Eigen::Block<Derived,1,-1,false>' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment