All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ejml.dense.row.decomposition.eig.WatchedDoubleStepQRDecomposition_DDRM Maven / Gradle / Ivy

/*
 * Copyright (c) 2009-2017, Peter Abeles. All Rights Reserved.
 *
 * This file is part of Efficient Java Matrix Library (EJML).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.ejml.dense.row.decomposition.eig;

import org.ejml.data.Complex_F64;
import org.ejml.data.DMatrixRMaj;
import org.ejml.dense.row.decomposition.eig.watched.WatchedDoubleStepQREigenvalue_DDRM;
import org.ejml.dense.row.decomposition.eig.watched.WatchedDoubleStepQREigenvector_DDRM;
import org.ejml.dense.row.decomposition.hessenberg.HessenbergSimilarDecomposition_DDRM;
import org.ejml.interfaces.decomposition.EigenDecomposition_F64;


/**
 * 

* Finds the eigenvalue decomposition of an arbitrary square matrix using the implicit double-step QR algorithm. * Watched is included in its name because it is designed to print out internal debugging information. This * class is still underdevelopment and has yet to be optimized. *

* *

* Based off the description found in:
* David S. Watkins, "Fundamentals of Matrix Computations." Second Edition. *

* * @author Peter Abeles */ //TODO looks like there might be some pointless copying of arrays going on public class WatchedDoubleStepQRDecomposition_DDRM implements EigenDecomposition_F64 { HessenbergSimilarDecomposition_DDRM hessenberg; WatchedDoubleStepQREigenvalue_DDRM algValue; WatchedDoubleStepQREigenvector_DDRM algVector; DMatrixRMaj H; // should it compute eigenvectors or just eigenvalues boolean computeVectors; public WatchedDoubleStepQRDecomposition_DDRM(boolean computeVectors) { hessenberg = new HessenbergSimilarDecomposition_DDRM(10); algValue = new WatchedDoubleStepQREigenvalue_DDRM(); algVector = new WatchedDoubleStepQREigenvector_DDRM(); this.computeVectors = computeVectors; } @Override public boolean decompose(DMatrixRMaj A) { if( !hessenberg.decompose(A) ) return false; H = hessenberg.getH(null); algValue.getImplicitQR().createR = false; // algValue.getImplicitQR().setChecks(true,true,true); if( !algValue.process(H) ) return false; // for( int i = 0; i < A.numRows; i++ ) { // System.out.println(algValue.getEigenvalues()[i]); // } algValue.getImplicitQR().createR = true; if( computeVectors ) return algVector.process(algValue.getImplicitQR(), H, hessenberg.getQ(null)); else return true; } @Override public boolean inputModified() { return hessenberg.inputModified(); } @Override public int getNumberOfEigenvalues() { return algValue.getEigenvalues().length; } @Override public Complex_F64 getEigenvalue(int index) { return algValue.getEigenvalues()[index]; } @Override public DMatrixRMaj getEigenVector(int index) { return algVector.getEigenvectors()[index]; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy