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

All Superinterfaces:
Cloneable, MatrixBase<N>, WritableIntMatrix<N>, WritableMatrix<N>
All Known Subinterfaces:
BigIntegerMatrix, BigIntegerRationalMatrix, DoubleMatrix, DoubleVector, LongMatrix, LongRationalMatrix, WritableBigIntegerMatrix<N>, WritableBigIntegerRationalMatrix<N>, WritableDoubleMatrix<N>, WritableLongRationalMatrix<N>
All Known Implementing Classes:
AbstractDoubleMatrix, DefaultBigIntegerMatrix, DefaultBigIntegerRationalMatrix, DefaultBigIntegerVector, DefaultDoubleMatrix, DefaultDoubleVector, DefaultLongMatrix, DynamicDoubleMatrix, DynamicDoubleMatrix.DynamicColumns, DynamicDoubleMatrix.DynamicRows, SubDoubleMatrix

public interface WritableLongMatrix<N extends Number>
extends WritableIntMatrix<N>


Method Summary
 void add(int row, int col, long value)
           
 void addRowToOtherRow(int srcRow, long srcFactor, int dstRow, long dstFactor)
           
 void multiply(int row, int col, long factor)
           
 void multiplyRow(int row, long factor)
           
 void setValueAt(int row, int col, long value)
           
 
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,
                long value)

add

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

multiply

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

multiplyRow

void multiplyRow(int row,
                 long factor)

addRowToOtherRow

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