scalation

linalgebra

package linalgebra

The linalgebra package contains classes, traits and objects for linear algebra, including vectors and matrices for real and complex numbers.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. linalgebra
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class Bidiagonal extends Error

    The Bidiagonal class is used to creates a bidiagonal matrix for matrix 'a'.

  2. class Cholesky extends Error

    The Cholesky class provides a method to factor symmetric positive definite matrices 'a' into 'l * l.

  3. trait Eigen extends AnyRef

    The Eigen trait defines constants used by classes and objects the Eigen group.

  4. class Eigenvalue extends Eigen with Error

    The Eigenvalue class is used to find the eigenvalues of an 'n' by 'n' matrix 'a' using an iterative technique that applies similarity transformations to convert 'a' into an upper triangular matrix, so that the eigenvalues appear along the diagonal.

  5. class EigenvalueSym extends Eigen with Error

    The EigenvalueSym class is used to find the eigenvalues of an 'n' by 'n' symmetric matrix 'a' using an iterative technique, the Symmetric QR Algorithm.

  6. class Eigenvector extends Eigen with Error

    The Eigenvector class is used to find the eigenvectors of an 'n' by 'n' matrix 'a' by solving equations of the form

  7. class Hessenburg extends Eigen with Error

    The Hessenburg class is used to reduce, via similarity transformations, an 'n' by 'n' matrix 'a' to Hessenburg form 'h', where all elements two below the main diagonal are zero (or close to zero).

  8. class HouseholderT extends Eigen with Error

    The HouseholderT class performs a Householder Tridiagonalization on a symmetric matrix.

  9. trait Matric extends Error

    The Matric trait specifies the operations to be defined by three concrete implemeting classes: MatrixC, SparseMatrixC and SymTriMatrixC.

  10. trait Matrir extends Error

    The Matrir trait specifies the operations to be defined by three concrete implemeting classes: MatrixR, SparseMatrixR and SymTriMatrixR.

  11. trait Matrix extends Error

    The Matrix trait specifies the operations to be defined by four concrete implemeting classes: MatrixD, ParMatrixD, SparseMatrixD and SymTriMatrixD.

  12. class MatrixC extends Matric with Error with Serializable

    The MatrixC class stores and operates on Numeric Matrices of type Complex.

  13. class MatrixD extends Matrix with Error with Serializable

    The MatrixD class stores and operates on Numeric Matrices of type Double.

  14. class MatrixR extends Matrir with Error with Serializable

    The MatrixR class stores and operates on Numeric Matrices of type Rational.

  15. class ParMatrixD extends Matrix with Error with Serializable

    The ParMatrixD class stores and operates parallel on Numeric Matrices of type Double.

  16. class ParSparseMatrixD extends Matrix with Error with Serializable

    The ParSparseMatrixD class stores and operates on Matrices of Doubles.

  17. class QRDecomp extends Error

    The QRDecomp class is used to decompose an 'm' by 'n' matrix 'a' into an orthogonal 'm' by 'n' matrix 'q' and an 'n' by 'n' right upper triangular matrix 'r' such that 'a = q * r'.

  18. class SVD extends Error

    The SVD class is used to compute the Singlar Value Decomposition (SVD) of matrix 'a' using the Golub-Kahan-Reinsch Algorithm.

  19. class SVDecomp extends AnyRef

    The SVDecomp class performs Single Value Decompositions (SVDs) using the Eigen class.

  20. class SparseMatrixC extends Matric with Error with Serializable

    The SparseMatrixC class stores and operates on Matrices of Complex numbers.

  21. class SparseMatrixD extends Matrix with Error with Serializable

    The SparseMatrixD class stores and operates on Matrices of Doubles.

  22. class SymTriMatrixC extends Matric with Error with Serializable

    The SymTriMatrixC class stores and operates on symmetric tridiagonal matrices.

  23. class SymTriMatrixD extends Matrix with Error with Serializable

    The SymTriMatrixD class stores and operates on symmetric tridiagonal matrices.

  24. class VectorC extends Traversable[Complex] with PartiallyOrdered[VectorC] with Error with Serializable

    The VectorC class stores and operates on Numeric Vectors of base type Complex.

  25. class VectorD extends Traversable[Double] with PartiallyOrdered[VectorD] with Error with Serializable

    The VectorD class stores and operates on Numeric Vectors of base type Double.

  26. class VectorR extends Traversable[Rational] with PartiallyOrdered[VectorR] with Error with Serializable

    The VectorR class stores and operates on Numeric Vectors of base type Rational.

Value Members

  1. object BidiagonalTest extends App

    The BidiagonalTest object is used to test the Bidiagonal class.

  2. object CholeskyTest extends App

    The CholeskyTest object is used to test the Cholesky class.

  3. object Eigen2 extends Error

    The Eigen2 object provides simple methods for computing eigenvalues and eigenvectors for 2-by-2 matrices.

  4. object Eigen2Test extends App

    The Eigen2Test is used to test the Eigen object.

  5. object EigenTest extends App

    The EigenTest object is used to test the all the classes used in computing Eigenvalues and Eigenvectors for the non-symmetric/general case.

  6. object Givens

    The Givens objects has methods for determinng values 'c = cos(theta)' and 's = sin(theta) for Givens rotation matrices as well as methods for applying Givens rotations.

  7. object GivensTest extends App

    The GivensTest object tests the Givens object by using two rotations to turn matrix 'a' into an upper triangular matrix, clearing positions (1, 0) and (2, 1).

  8. object Householder

    The Householder object provides methods to compute Householder vectors and reflector matrices.

  9. object HouseholderTest extends App

    The HouseholderTest object is used to test Householder object.

  10. object MatrixC extends Error with Serializable

    The MatrixC companion object provides operations for MatrixC that don't require 'this' (like static methods in Java).

  11. object MatrixCTest extends App

    The MatrixCTest object tests the operations provided by MatrixC class.

  12. object MatrixD extends Error with Serializable

    The MatrixD companion object provides operations for MatrixD that don't require 'this' (like static methods in Java).

  13. object MatrixDTest extends App

    The MatrixDTest object tests the operations provided by MatrixD class.

  14. object MatrixR extends Error with Serializable

    The MatrixR companion object provides operations for MatrixR that don't require 'this' (like static methods in Java).

  15. object MatrixRTest extends App

    The MatrixRTest object tests the operations provided by MatrixR class.

  16. object ParMatrixD extends Error with Serializable

    The ParMatrixD companion object provides operations for ParMatrixD that don't require 'this' (like static methods in Java).

  17. object ParMatrixDTest extends App

    The ParMatrixDTest object tests the operations provided by ParMatrixD class.

  18. object ParSparseMatrixDTest extends App

    The ParSparseMatrixDTest object is used to test the ParSparseMatrixD class.

  19. object QRDecompTest extends App

    The QRDecompTest object is used to test the QRDecomp class.

  20. object SVD

    The SVD companion object.

  21. object SVDTest extends App

    The SVDTest object is used to test the SVD class starting with a matrix that is already bidiagonalized and gives eigenvalues of 28, 18 for the first step.

  22. object SVDTest2 extends App

    The SVDTest2 object is used to test the SVD class starting with a general matrix.

  23. object SVDTest3 extends App

    The SVDTest3 object is used to test the SVD companion object.

  24. object SVDecompTest extends App

    The SVDecompTest object is used to test the SVDecomp class.

  25. object SparseMatrixC extends Serializable

    The SparseMatrixC objecxt is the companion object for the SparseMatrixC class.

  26. object SparseMatrixCTest extends App

    The SparseMatrixCTest object is used to test the SparseMatrixC class.

  27. object SparseMatrixD extends Serializable

    The SparseMatrixD object is the companion object for the SparseMatrixD class.

  28. object SparseMatrixDTest extends App

    The SparseMatrixDTest object is used to test the SparseMatrixD class.

  29. object SymTriMatrixCTest extends App

    The SymTriMatrixCTest object is used to test the SymTriMatrixC class.

  30. object SymTriMatrixDTest extends App

    The SymTriMatrixDTest object is used to test the SymTriMatrixD class.

  31. object SymmetricQRstep extends Eigen with Error

    The SymmetricQRstep object performs a symmetric QR step with a Wilkinson shift.

  32. object VectorC extends Serializable

    The VectorC object is the companion object for VectorC class.

  33. object VectorCTest extends App

    The VectorCTest object tests the operations provided by VectorC class.

  34. object VectorD extends Serializable

    The VectorD object is the companion object for the VectorD class.

  35. object VectorDTest extends App

    The VectorDTest object tests the operations provided by VectorD.

  36. object VectorR extends Serializable

    The VectorR object is the companion object for Vector class.

  37. object VectorRTest extends App

    The VectorRTest object tests the operations provided by VectorR class.

Inherited from AnyRef

Inherited from Any

Ungrouped