Package org.ejml.data

Class DMatrixSparse.CoordinateRealValue

java.lang.Object
org.ejml.data.DMatrixSparse.CoordinateRealValue
Enclosing interface:
DMatrixSparse

public static class DMatrixSparse.CoordinateRealValue
extends java.lang.Object
Value of an element in a sparse matrix
  • Field Summary

    Fields 
    Modifier and Type Field Description
    int col
    The coordinate
    int row
    The coordinate
    double value
    The value of the coordinate
  • Constructor Summary

    Constructors 
    Constructor Description
    CoordinateRealValue()  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • row

      public int row
      The coordinate
    • col

      public int col
      The coordinate
    • value

      public double value
      The value of the coordinate
  • Constructor Details