double[][] we = transposedWeakEigenvectors.getArrayRef();
double[] b = B.getArrayRef();
System.arraycopy(we, 0, a, 0, transposedWeakEigenvectors.getRowDimensionality());
LinearEquationSystem lq = new LinearEquationSystem(a, b);
lq.solveByTotalPivotSearch();
sol = new CorrelationAnalysisSolution<V>(lq, db, strongEigenvectors, pcares.getWeakEigenvectors(), pcares.similarityMatrix(), centroid);
if(logger.isDebuggingFine()) {
StringBuilder log = new StringBuilder();