diff --git a/src/base/alias.rs b/src/base/alias.rs index 7daec8d1..6bc04813 100644 --- a/src/base/alias.rs +++ b/src/base/alias.rs @@ -27,6 +27,12 @@ pub type OMatrix = Matrix>; )] pub type MatrixMN = Matrix>; +/// An owned matrix column-major matrix with `D` columns. +/// +/// **Because this is an alias, not all its methods are listed here. See the [`Matrix`](crate::base::Matrix) type too.** +#[deprecated(note = "use OMatrix or SMatrix instead.")] +pub type MatrixN = Matrix>; + /// A statically sized column-major matrix with `R` rows and `C` columns. /// /// **Because this is an alias, not all its methods are listed here. See the [`Matrix`](crate::base::Matrix) type too.**