Uses of Interface
hep.physics.matrix.Matrix

Packages that use Matrix
hep.physics.matrix Simple matrix package. 
hep.physics.vec General classes for operating on 3- and 4- vectors. 
 

Uses of Matrix in hep.physics.matrix
 

Subinterfaces of Matrix in hep.physics.matrix
 interface MutableMatrix
          A matrix that can be changed
 

Classes in hep.physics.matrix that implement Matrix
 class BasicMatrix
          A very simple matrix implementation
 class SymmetricMatrix
          A simple implementation of a symmetric matrix.
 

Methods in hep.physics.matrix that return Matrix
static Matrix MatrixOp.add(Matrix a, Matrix b)
          Add two matrices together.
static Matrix MatrixOp.getSubMatrix(Matrix m, int row, int col, int nrow, int ncol)
          Extract part of a matrix.
static Matrix MatrixOp.inverse(Matrix m)
          Convenience method to invert a matrix in one step.
static Matrix MatrixOp.mult(double c, Matrix m)
          Multiply a matrix by a scaler constant.
static Matrix MatrixOp.mult(Matrix m1, Matrix m2)
           
static Matrix MatrixOp.sub(Matrix a, Matrix b)
          Subtract matrix b from matrix a.
static Matrix MatrixOp.transposed(Matrix m)
          Returns the transpose of the matrix.
 

Methods in hep.physics.matrix with parameters of type Matrix
static Matrix MatrixOp.add(Matrix a, Matrix b)
          Add two matrices together.
static Hep3Vector MatrixOp.as3Vector(Matrix m)
          Convenience method to turn a 3 row column matrix into a vector.
static double MatrixOp.det(Matrix mIn)
           
static Matrix MatrixOp.getSubMatrix(Matrix m, int row, int col, int nrow, int ncol)
          Extract part of a matrix.
static Matrix MatrixOp.inverse(Matrix m)
          Convenience method to invert a matrix in one step.
static void MatrixOp.inverse(Matrix mIn, MutableMatrix mOut)
          Invert matrix mIn and write it to matrix mOut.
static Matrix MatrixOp.mult(double c, Matrix m)
          Multiply a matrix by a scaler constant.
static Matrix MatrixOp.mult(Matrix m1, Matrix m2)
           
static void MatrixOp.setSubMatrix(MutableMatrix mat, Matrix sub, int row, int col)
          Fill in part of a matrix with the contents of another matrix.
static Matrix MatrixOp.sub(Matrix a, Matrix b)
          Subtract matrix b from matrix a.
static java.lang.String MatrixOp.toString(Matrix m)
           
static Matrix MatrixOp.transposed(Matrix m)
          Returns the transpose of the matrix.
static void MatrixOp.transposed(Matrix mIn, MutableMatrix mOut)
          Traspose matrix mIn and write it to matrix mOut.
 

Constructors in hep.physics.matrix with parameters of type Matrix
BasicMatrix(Matrix mIn)
           
SymmetricMatrix(Matrix mIn)
          Construct a SymmetricMatrix by copying an existing matrix.
 

Uses of Matrix in hep.physics.vec
 

Subinterfaces of Matrix in hep.physics.vec
 interface Hep3Matrix
          Hep 3x3 matrices
 

Classes in hep.physics.vec that implement Matrix
 class BasicHep3Matrix
          3x3 matrices for Hep3Vector operations.
 

Constructors in hep.physics.vec with parameters of type Matrix
BasicHep3Matrix(Matrix m)
           
 



Copyright © 2000-2010 FreeHEP. All Rights Reserved.