Class SquareMatrix

  • All Implemented Interfaces:
    Serializable

    public class SquareMatrix
    extends RectangularMatrix
    The matrix class.

    Used for operations on small matrices primarily in optimisation and Runge-Kutta calculations of radiative transfer. Fixed-size matrices of size 2, 3, and 4 are the direct subclasses and offer a boost in performance by implementing a reduced FLOP matrix inverse.

    Note this class cannot be instantiated directly from outside the pulse.math package, the user needs to invoke the factory class methods Matrices instead.

    See Also:
    Matrices, Serialized Form
    • Constructor Detail

      • SquareMatrix

        protected SquareMatrix​(double[][] args)
        Constructs a Matrix with the elements copied from args. The elements are copied by invoking System.arraycopy(...).
        Parameters:
        args - a two-dimensional double array
    • Method Detail

      • det

        public double det()
        Calculates the determinant for an n-by-n square matrix. The determinant is calculated using the EJML library.
        Returns:
        a double, representing the determinant
      • inverse

        public SquareMatrix inverse()
        Conducts matrix inversion with the procedural EJML approach. Can be overriden by subclasses to boost performance.
        Returns:
        the inverted .
      • isPositiveDefinite

        public boolean isPositiveDefinite()
        Checks if a matrix is positive definite. Uses EJML implementation.
        Returns:
        true is positive-definite
      • outerProduct

        public static SquareMatrix outerProduct​(Vector a,
                                                Vector b)
        Calculates the outer product of two vectors.
        Parameters:
        a - a Vector
        b - a Vector
        Returns:
        the outer product of a and b
      • dimension

        public int dimension()
      • blockDiagonal

        public SquareMatrix blockDiagonal()
        Creates a block-diagonal matrix from the diagonal of this matrix.
        Returns:
        diag(this)