maspack.matrix
Class SparseMatrixCell

java.lang.Object
  extended by maspack.matrix.SparseMatrixCell

public class SparseMatrixCell
extends java.lang.Object


Field Summary
 SparseMatrixCell down
           
 int i
           
 int j
           
 SparseMatrixCell next
           
 double value
           
 
Constructor Summary
SparseMatrixCell(int i, int j, double value)
           
SparseMatrixCell(SparseMatrixCell cell)
           
 
Method Summary
 java.lang.String toString()
           
 void transpose()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

i

public int i

j

public int j

value

public double value

next

public SparseMatrixCell next

down

public SparseMatrixCell down
Constructor Detail

SparseMatrixCell

public SparseMatrixCell(int i,
                        int j,
                        double value)

SparseMatrixCell

public SparseMatrixCell(SparseMatrixCell cell)
Method Detail

transpose

public void transpose()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object