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 94725b2 commit 5dce6b6Copy full SHA for 5dce6b6
src/krylov/householder.rs
@@ -5,11 +5,17 @@ use num_traits::Zero;
5
/// Iterative orthogonalizer using Householder reflection
6
#[derive(Debug, Clone)]
7
pub struct Householder<A: Scalar> {
8
+ /// Dimension of orthogonalizer
9
dim: usize,
10
+
11
+ /// Store Householder reflector.
12
+ ///
13
+ /// The coefficient is copied into another array, and this does not contain
14
v: Vec<Array1<A>>,
15
}
16
17
impl<A: Scalar> Householder<A> {
18
+ /// Create a new orthogonalizer
19
pub fn new(dim: usize) -> Self {
20
Householder { dim, v: Vec::new() }
21
0 commit comments