Skip to content

Commit ef80e1a

Browse files
committed
Document for Diag
1 parent b029bfb commit ef80e1a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lax/src/flags.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,13 @@ impl JobSvd {
120120
}
121121
}
122122

123+
/// Specify whether input triangular matrix is unit or not
123124
#[derive(Debug, Clone, Copy)]
124125
#[repr(u8)]
125126
pub enum Diag {
127+
/// Unit triangular matrix, i.e. all diagonal elements of the matrix are `1`
126128
Unit = b'U',
129+
/// Non-unit triangular matrix. Its diagonal elements may be different from `1`
127130
NonUnit = b'N',
128131
}
129132

0 commit comments

Comments
 (0)