private boolean extractTogether() {
// extract the orthogonal from the similar transform
// V = decomp.getQ(V,true);
AMatrix temp = decomp.getQ(true);
V = Matrix.wrap(temp.rowCount(), temp.columnCount(), temp.asDoubleArray());
// tell eigenvector algorithm to update this matrix as it computes the rotators
helper.setQ(V);
vector.setFastEigenvalues(false);