We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e59ede9 commit a29081aCopy full SHA for a29081a
src/matrix.rs
@@ -23,6 +23,7 @@ pub trait Matrix: Sized {
23
fn norm_f(&self) -> Self::Scalar;
24
/// singular-value decomposition (SVD)
25
fn svd(self) -> Result<(Self, Self::Vector, Self), LapackError>;
26
+ /// QR decomposition
27
fn qr(self) -> Result<(Self, Self), LapackError>;
28
}
29
0 commit comments