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

com.opengamma.strata.math.impl.linearalgebra.LUDecompositionResult Maven / Gradle / Ivy

There is a newer version: 2.12.46
Show newest version
/*
 * 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 com.opengamma.strata.collect.array.DoubleMatrix;
import com.opengamma.strata.math.linearalgebra.DecompositionResult;

/**
 * Contains the results of LU matrix decomposition.
 */
// CSOFF: AbbreviationAsWordInName
public interface LUDecompositionResult extends DecompositionResult {

  /**
   * Returns the $\mathbf{L}$ matrix of the decomposition.
   * 

* $\mathbf{L}$ is a lower-triangular matrix. * @return the $\mathbf{L}$ matrix */ public abstract DoubleMatrix getL(); /** * Returns the $\mathbf{U}$ matrix of the decomposition. *

* $\mathbf{U}$ is an upper-triangular matrix. * @return the U matrix */ public abstract DoubleMatrix getU(); /** * Returns the rows permutation matrix, $\mathbf{P}$. *

* P is a sparse matrix with exactly one element set to 1.0 in * each row and each column, all other elements being set to 0.0. *

* The positions of the 1 elements are given by the {@link #getPivot() * pivot permutation vector}. * @return the $\mathbf{P}$ rows permutation matrix * @see #getPivot() */ public abstract DoubleMatrix getP(); /** * Returns the pivot permutation vector. * @return the pivot permutation vector */ public abstract int[] getPivot(); /** * Return the determinant of the matrix. * @return determinant of the matrix */ public abstract double getDeterminant(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy