Skip to content

Commit a29081a

Browse files
committed
Add short doc
1 parent e59ede9 commit a29081a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/matrix.rs

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ pub trait Matrix: Sized {
2323
fn norm_f(&self) -> Self::Scalar;
2424
/// singular-value decomposition (SVD)
2525
fn svd(self) -> Result<(Self, Self::Vector, Self), LapackError>;
26+
/// QR decomposition
2627
fn qr(self) -> Result<(Self, Self), LapackError>;
2728
}
2829

0 commit comments

Comments
 (0)