Fix some typos

(cherry picked from commit 81cb6a51d0)
This commit is contained in:
Jonas Schulze
2023-03-16 23:11:43 +00:00
committed by Antonio Sanchez
parent 63e8b31c94
commit 34d0d83278
5 changed files with 5 additions and 5 deletions

View File

@@ -153,7 +153,7 @@ It is easy to perform arithmetic operations on sparse matrices provided that the
\code
perm.indices(); // Reference to the vector of indices
sm1.twistedBy(perm); // Permute rows and columns
sm2 = sm1 * perm; // Permute the columns
sm2 = sm1 * perm; // Permute the rows
sm2 = perm * sm1; // Permute the columns
\endcode
</td>