Package org.ejml.data

Class FMatrixSparse.CoordinateRealValue

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

public static class FMatrixSparse.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
    float 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 float value
      The value of the coordinate
  • Constructor Details