From 2bef19ed5cc267d5aab650a9ab9794ca01e4058b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Crozet=20S=C3=A9bastien?= Date: Mon, 12 Apr 2021 11:15:01 +0200 Subject: [PATCH] Deprecate the MatrixN alias. --- src/base/alias.rs | 6 ++++++ 1 file changed, 6 insertions(+) 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.**