Package org.ejml.data

Class ElementLocation

java.lang.Object
org.ejml.data.ElementLocation

public class ElementLocation
extends java.lang.Object
The row and column of an element in a Matrix
  • Field Summary

    Fields 
    Modifier and Type Field Description
    int col
    Column coordinate of an element
    int row
    Row coordinate of an element
  • Constructor Summary

    Constructors 
    Constructor Description
    ElementLocation()  
    ElementLocation​(int row, int col)  
  • Method Summary

    Modifier and Type Method Description
    void set​(int row, int col)  
    void set​(ElementLocation loc)  

    Methods inherited from class java.lang.Object

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

    • row

      public int row
      Row coordinate of an element
    • col

      public int col
      Column coordinate of an element
  • Constructor Details

  • Method Details