hep.physics.matrix
Interface MutableMatrix

All Superinterfaces:
Matrix
All Known Implementing Classes:
BasicHep3Matrix, BasicMatrix, SymmetricMatrix

public interface MutableMatrix
extends Matrix

A matrix that can be changed

Version:
$Id: MutableMatrix.java 9201 2006-10-23 17:42:09Z tonyj $
Author:
tonyj

Method Summary
 void invert()
          Invert this matrix (into itself)
 void setElement(int row, int column, double value)
          Set the given element of the matrix
 void transpose()
          Tranpose this matrix (into itself)
 
Methods inherited from interface hep.physics.matrix.Matrix
e, getNColumns, getNRows
 

Method Detail

setElement

void setElement(int row,
                int column,
                double value)
Set the given element of the matrix


invert

void invert()
            throws MatrixOp.IndeterminateMatrixException
Invert this matrix (into itself)

Throws:
MatrixOp.IndeterminateMatrixException
See Also:
MatrixOp.inverse(Matrix,MutableMatrix)

transpose

void transpose()
Tranpose this matrix (into itself)

See Also:
MatrixOp.transposed(Matrix,MutableMatrix)


Copyright © 2000-2010 FreeHEP. All Rights Reserved.