Skip to content

Commit f5f079f

Browse files
committed
Add documentation for svddc::UVTFlag
1 parent cdc6db1 commit f5f079f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/svddc.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@ use super::error::*;
77
use super::layout::*;
88
use super::types::*;
99

10+
/// Specifies how many of the columns of *U* and rows of *V*ᵀ are computed and returned.
11+
///
12+
/// For an input array of shape *m*×*n*, the following are computed:
1013
#[derive(Clone, Copy, Eq, PartialEq)]
1114
#[repr(u8)]
1215
pub enum UVTFlag {
16+
/// All *m* columns of *U* and all *n* rows of *V*ᵀ.
1317
Full = b'A',
18+
/// The first min(*m*,*n*) columns of *U* and the first min(*m*,*n*) rows of *V*ᵀ.
1419
Some = b'S',
20+
/// No columns of *U* or rows of *V*ᵀ.
1521
None = b'N',
1622
}
1723

0 commit comments

Comments
 (0)