OntoSim 2.1

fr.inrialpes.exmo.ontosim.util.matrix
Interface Matrix<R,C>

All Known Implementing Classes:
HalfMatrixDouble, MatrixDouble

public interface Matrix<R,C>


Method Summary
 boolean containsCdim(C c)
           
 boolean containsRdim(R r)
           
 double get(R r, C c)
           
 Set<C> getDimC()
           
 Set<R> getDimR()
           
 Set<?> keySet()
           
 void put(R r, C c, double value)
           
 void putAll(Matrix<R,C> m)
           
 MatrixDoubleArray<R,C> toArray()
           
 MatrixDoubleArray<C,R> toArrayT()
           
 

Method Detail

put

void put(R r,
         C c,
         double value)

get

double get(R r,
           C c)

getDimR

Set<R> getDimR()

getDimC

Set<C> getDimC()

keySet

Set<?> keySet()

containsRdim

boolean containsRdim(R r)

containsCdim

boolean containsCdim(C c)

toArray

MatrixDoubleArray<R,C> toArray()

toArrayT

MatrixDoubleArray<C,R> toArrayT()

putAll

void putAll(Matrix<R,C> m)

OntoSim 2.1

(C) INRIA & friends, 2008-2009