com.opengamma.strata.math.impl.linearalgebra.SVDecompositionCommons Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of strata-math Show documentation
Show all versions of strata-math Show documentation
Mathematic support for Strata
/*
* Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.strata.math.impl.linearalgebra;
import org.apache.commons.math3.linear.RealMatrix;
import org.apache.commons.math3.linear.SingularValueDecomposition;
import com.opengamma.strata.collect.ArgChecker;
import com.opengamma.strata.collect.array.DoubleMatrix;
import com.opengamma.strata.math.impl.util.CommonsMathWrapper;
import com.opengamma.strata.math.linearalgebra.Decomposition;
/**
* This class is a wrapper for the Commons Math library implementation
* of singular value decomposition.
*/
// CSOFF: AbbreviationAsWordInName
public class SVDecompositionCommons implements Decomposition {
@Override
public SVDecompositionResult apply(DoubleMatrix x) {
ArgChecker.notNull(x, "x");
MatrixValidate.notNaNOrInfinite(x);
RealMatrix commonsMatrix = CommonsMathWrapper.wrap(x);
SingularValueDecomposition svd = new SingularValueDecomposition(commonsMatrix);
return new SVDecompositionCommonsResult(svd);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy