SimpleMatrix a = A.extractVector(true,rowA).scale(alpha);
SimpleMatrix b = B.extractVector(true,rowB).scale(beta);
SimpleMatrix c = a.plus(b);
BlockHouseHolder.add_row(r,
new D1Submatrix64F(Ab),rowA, alpha,
new D1Submatrix64F(Bb),rowB, beta ,
new D1Submatrix64F(Cb),rowC, 1,end);
// skip over the zeros
for( int j = rowA+1; j < end; j++ ) {
assertEquals(c.get(j), Cb.get(rowC,j),1e-8);
}