com.croftsoft.core.math.matrix
Interface MatrixMut

All Superinterfaces:
Matrix
All Known Subinterfaces:
Matrix3x3Mut
All Known Implementing Classes:
Matrix3x3Imp, MatrixImp

public interface MatrixMut
extends Matrix

A mutable matrix of doubles.

Since:
2008-04-25
Version:
$Id: MatrixMut.java,v 1.2 2008/05/03 00:35:31 croft Exp $
Author:
David Wallace Croft

Method Summary
 void copyToSelf(Matrix matrix)
           
 void multiplyToSelf(double scalar)
           
 void multiplyToSelf(Matrix matrix)
           
 void set(int row, int column, double value)
           
 void setIdentity()
           
 void transposeSelf()
           
 
Methods inherited from interface com.croftsoft.core.math.matrix.Matrix
copy, get, getColumnCount, getRowCount, isIdentity, isSquare, matches, matches, multiply, multiply, transpose
 

Method Detail

copyToSelf

void copyToSelf(Matrix matrix)

multiplyToSelf

void multiplyToSelf(double scalar)

multiplyToSelf

void multiplyToSelf(Matrix matrix)

set

void set(int row,
         int column,
         double value)

setIdentity

void setIdentity()

transposeSelf

void transposeSelf()

CroftSoft Javadoc

CroftSoft Core Javadoc (2008-09-28 20:58:02)