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

All Superinterfaces:
Cloneable, MatrixBase<N>, ReadableBigIntegerMatrix<N>, ReadableBigIntegerRationalMatrix<N>, ReadableDoubleMatrix<N>, ReadableLongRationalMatrix<N>, ReadableMatrix<N>
All Known Subinterfaces:
IntMatrix, LongMatrix, ReadableIntMatrix<N>
All Known Implementing Classes:
DefaultIntMatrix, DefaultLongMatrix

public interface ReadableLongMatrix<N extends Number>
extends ReadableBigIntegerMatrix<N>, ReadableLongRationalMatrix<N>


Method Summary
 long[] getLongColumn(int col)
           
 long[][] getLongColumns()
           
 long[] getLongRow(int row)
           
 long[][] getLongRows()
           
 long getLongValueAt(int row, int col)
           
 ReadableLongMatrix subLongMatrix(int rowStart, int rowEnd, int colStart, int colEnd)
           
 void toArray(long[] array)
           
 long[] toLongArray()
           
 LongMatrix toLongMatrix(boolean enforceNewInstance)
           
 
Methods inherited from interface ch.javasoft.smx.iface.ReadableBigIntegerMatrix
getBigIntegerColumn, getBigIntegerColumns, getBigIntegerRow, getBigIntegerRows, getBigIntegerValueAt, subBigIntegerMatrix, toArray, toBigIntegerArray, toBigIntegerMatrix
 
Methods inherited from interface ch.javasoft.smx.iface.ReadableLongRationalMatrix
getLongDenominatorAt, getLongNumeratorAt, subLongRationalMatrix, toLongRationalMatrix
 
Methods inherited from interface ch.javasoft.smx.iface.ReadableBigIntegerRationalMatrix
getBigFractionValueAt, getBigIntegerDenominatorAt, getBigIntegerNumeratorAt, subBigIntegerRationalMatrix, toBigIntegerRationalMatrix
 
Methods inherited from interface ch.javasoft.smx.iface.ReadableDoubleMatrix
getDoubleColumn, getDoubleColumns, getDoubleRow, getDoubleRows, getDoubleValueAt, subDoubleMatrix, toArray, toDoubleArray, toDoubleMatrix
 
Methods inherited from interface ch.javasoft.smx.iface.ReadableMatrix
clone, getNumberRows, getNumberValueAt, getSignumAt, newInstance, newInstance, toWritableMatrix, transpose
 
Methods inherited from interface ch.javasoft.smx.iface.MatrixBase
getColumnCount, getMatrixOperations, getNumberOperations, getRowCount, toMultilineString, toString, writeTo, writeTo, writeToMultiline, writeToMultiline
 

Method Detail

toLongMatrix

LongMatrix toLongMatrix(boolean enforceNewInstance)

subLongMatrix

ReadableLongMatrix subLongMatrix(int rowStart,
                                 int rowEnd,
                                 int colStart,
                                 int colEnd)

getLongValueAt

long getLongValueAt(int row,
                    int col)

toLongArray

long[] toLongArray()

toArray

void toArray(long[] array)

getLongRow

long[] getLongRow(int row)

getLongColumn

long[] getLongColumn(int col)

getLongRows

long[][] getLongRows()

getLongColumns

long[][] getLongColumns()