Fix some typos

This commit is contained in:
Jonas Schulze
2023-03-16 23:11:43 +00:00
committed by Rasmus Munk Larsen
parent 555cec17ed
commit 81cb6a51d0
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>