We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdc6db1 commit f5f079fCopy full SHA for f5f079f
src/svddc.rs
@@ -7,11 +7,17 @@ use super::error::*;
7
use super::layout::*;
8
use super::types::*;
9
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:
13
#[derive(Clone, Copy, Eq, PartialEq)]
14
#[repr(u8)]
15
pub enum UVTFlag {
16
+ /// All *m* columns of *U* and all *n* rows of *V*ᵀ.
17
Full = b'A',
18
+ /// The first min(*m*,*n*) columns of *U* and the first min(*m*,*n*) rows of *V*ᵀ.
19
Some = b'S',
20
+ /// No columns of *U* or rows of *V*ᵀ.
21
None = b'N',
22
}
23
0 commit comments