Skip to content

Commit

Permalink
Improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cpmech committed Sep 7, 2023
1 parent d53c15d commit 036c1fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion russell_lab/src/matrix/mat_mat_mul.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use super::Matrix;
use crate::StrError;
use russell_openblas::{dgemm, to_i32};

/// Performs the matrix-matrix multiplication resulting in a matrix
/// Performs the matrix-matrix multiplication
///
/// ```text
/// c := α ⋅ a ⋅ b
Expand Down
2 changes: 1 addition & 1 deletion russell_lab/src/matrix/mat_t_mat_mul.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use super::Matrix;
use crate::StrError;
use russell_openblas::{dgemm, to_i32};

/// Performs the matrix(transposed)-matrix multiplication resulting in a matrix
/// Performs the transpose(matrix)-matrix multiplication
///
/// ```text
/// c := α ⋅ aᵀ ⋅ b
Expand Down
2 changes: 1 addition & 1 deletion russell_lab/src/matvec/mat_vec_mul.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use crate::vector::Vector;
use crate::StrError;
use russell_openblas::{dgemv, to_i32};

/// Performs the matrix-vector multiplication resulting in a vector
/// Performs the matrix-vector multiplication
///
/// ```text
/// v := α ⋅ a ⋅ u
Expand Down

0 comments on commit 036c1fc

Please sign in to comment.