Function nalgebra::householder_matrix
[−]
[src]
pub fn householder_matrix<N, V, M>(dimension: usize, start: usize, vector: V) -> M where N: BaseFloat, M: Eye + Indexable<(usize, usize), N>, V: Indexable<usize, N>Get the householder matrix corresponding to a reflexion to the hyperplane
defined by vector. It can be a reflexion contained in a subspace.
Arguments
dimension- the dimension of the space the resulting matrix operates instart- the starting dimension of the subspace of the reflexionvector- the vector defining the reflection.