Ejemplo n.º 1
0
func householder(a *matrix.DenseMatrix) *matrix.DenseMatrix {
	m := a.Rows()
	s := sign(a.Get(0, 0))
	e := unitVector(m)
	u := matrix.Sum(a, matrix.Scaled(e, a.TwoNorm()*s))
	v := matrix.Scaled(u, 1/u.Get(0, 0))
	// (error checking skipped in this solution)
	prod, _ := v.Transpose().TimesDense(v)
	β := 2 / prod.Get(0, 0)

	prod, _ = v.TimesDense(v.Transpose())
	return matrix.Difference(matrix.Eye(m), matrix.Scaled(prod, β))
}
Ejemplo n.º 2
0
func qr(a *matrix.DenseMatrix) (q, r *matrix.DenseMatrix) {
	m := a.Rows()
	n := a.Cols()
	q = matrix.Eye(m)

	last := n - 1
	if m == n {
		last--
	}
	for i := 0; i <= last; i++ {
		// (copy is only for compatibility with an older version of gomatrix)
		b := a.GetMatrix(i, i, m-i, n-i).Copy()
		x := b.GetColVector(0)
		h := matrix.Eye(m)
		h.SetMatrix(i, i, householder(x))
		q, _ = q.TimesDense(h)
		a, _ = h.TimesDense(a)
	}
	return q, a
}