fixed snippets

This commit is contained in:
Erik Schultheis
2021-12-05 17:31:12 +00:00
committed by Antonio Sánchez
parent cd83f34d3a
commit 14c32c60f3
3 changed files with 3 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
MatrixXi A = MatrixXi::Random(4,6);
cout << "Initial matrix A:\n" << A << "\n\n";
cout << "A(all,{4,2,5,5,3}):\n" << A(all,{4,2,5,5,3}) << "\n\n";
cout << "A(all,{4,2,5,5,3}):\n" << A(Eigen::placeholders::all,{4,2,5,5,3}) << "\n\n";