ch.javasoft.smx.iface
Interface WritableDoubleMatrix<N extends Number>

All Superinterfaces:
Cloneable, MatrixBase<N>, WritableBigIntegerMatrix<N>, WritableBigIntegerRationalMatrix<N>, WritableIntMatrix<N>, WritableIntRationalMatrix<N>, WritableLongMatrix<N>, WritableLongRationalMatrix<N>, WritableMatrix<N>
All Known Subinterfaces:
DoubleMatrix, DoubleVector
All Known Implementing Classes:
AbstractDoubleMatrix, DefaultDoubleMatrix, DefaultDoubleVector, DynamicDoubleMatrix, DynamicDoubleMatrix.DynamicColumns, DynamicDoubleMatrix.DynamicRows, SubDoubleMatrix

public interface WritableDoubleMatrix<N extends Number>
extends WritableBigIntegerRationalMatrix<N>


Method Summary
 void add(int row, int col, double value)
           
 void addRowToOtherRow(int srcRow, double srcFactor, int dstRow, double dstFactor)
           
 void multiply(int row, int col, double factor)
           
 void multiplyRow(int row, double factor)
           
 void setValueAt(int row, int col, double value)
           
 
Methods inherited from interface ch.javasoft.smx.iface.WritableBigIntegerRationalMatrix
add, addRowToOtherRow, multiply, multiplyRow, setValueAt, setValueAt
 
Methods inherited from interface ch.javasoft.smx.iface.WritableLongRationalMatrix
add, addRowToOtherRow, multiply, multiplyRow, setValueAt
 
Methods inherited from interface ch.javasoft.smx.iface.WritableIntRationalMatrix
add, addRowToOtherRow, multiply, multiplyRow, setValueAt
 
Methods inherited from interface ch.javasoft.smx.iface.WritableBigIntegerMatrix
add, addRowToOtherRow, multiply, multiplyRow, setValueAt
 
Methods inherited from interface ch.javasoft.smx.iface.WritableLongMatrix
add, addRowToOtherRow, multiply, multiplyRow, setValueAt
 
Methods inherited from interface ch.javasoft.smx.iface.WritableIntMatrix
add, addRowToOtherRow, multiply, multiplyRow, setValueAt
 
Methods inherited from interface ch.javasoft.smx.iface.WritableMatrix
clone, negate, newInstance, newInstance, setValueAt, swapColumns, swapRows, toReadableMatrix, transpose
 
Methods inherited from interface ch.javasoft.smx.iface.MatrixBase
getColumnCount, getMatrixOperations, getNumberOperations, getRowCount, toMultilineString, toString, writeTo, writeTo, writeToMultiline, writeToMultiline
 

Method Detail

setValueAt

void setValueAt(int row,
                int col,
                double value)

add

void add(int row,
         int col,
         double value)

multiply

void multiply(int row,
              int col,
              double factor)

multiplyRow

void multiplyRow(int row,
                 double factor)

addRowToOtherRow

void addRowToOtherRow(int srcRow,
                      double srcFactor,
                      int dstRow,
                      double dstFactor)