Update ops.rs

Fixed a typo.. oops.
This commit is contained in:
Fangs 2024-04-24 11:22:03 +07:00 committed by GitHub
parent 83d20d38d8
commit acd2fc38fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -682,7 +682,8 @@ where
#[inline]
#[must_use]
pub fn mul_tr<R2: Dim, C2: Dim, SB>(&self, rhs: &Matrix<T, R2, C2, SB>) -> OMatrix<T, C1, C2>
/// Equivalent to `self * rhs.transpose()`.
pub fn mul_tr<R2: Dim, C2: Dim, SB>(&self, rhs: &Matrix<T, R2, C2, SB>) -> OMatrix<T, R1, R2>
where
SB: Storage<T, R2, C2>,
DefaultAllocator: Allocator<T, R1, R2>,