Compute a Householder vector v and its corresponding scalar b, where P = I - b * v * v.
Compute a Householder vector v and its corresponding scalar b, where P = I - b * v * v.t is an orthogonal matrix and Px = ||x|| * e_1.
the vector to create the Householder vector from
Algorithm 5.1.1 in Matrix Computations.
Compute the Householder reflector matrix h = I - 2*u*u.
Compute the Householder reflector matrix h = I - 2*u*u.t.
the vector to create the Householder reflector from
www.math.siu.edu/matlab/tutorial4.pdf
Compute the Householder unit vector u, where P = I - b * u * u.
Compute the Householder unit vector u, where P = I - b * u * u.t is an orthogonal matrix.
the vector to create the unit Householder vector from
www.math.siu.edu/matlab/tutorial4.pdf
The
Householder
object provides methods to compute Householder vectors and reflector matrices.