SimpleMatrix T = SimpleMatrix.random(M,1,-1,1,rand);
// -beta * (V + W*T)
SimpleMatrix expected = V.plus(W.mult(T)).scale(-beta);
BlockHouseHolder.computeZ(r,new D1Submatrix64F(Ab,0, A.numRows(), 0, r),new D1Submatrix64F(Aw,0, A.numRows(), 0, r),
M,T.getMatrix().data,beta);
for( int i = 0; i < A.numRows(); i++ ) {
assertEquals(expected.get(i),Aw.get(i,M),1e-8);
}