Package org.apache.commons.math.linear
Class RealVector.Entry
java.lang.Object
org.apache.commons.math.linear.RealVector.Entry
- Enclosing interface:
RealVector
Class representing a modifiable entry in the vector.
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
Entry
public Entry()
-
-
Method Details
-
getValue
public abstract double getValue()Get the value of the entry.- Returns:
- the value of the entry.
-
setValue
public abstract void setValue(double value) Set the value of the entry.- Parameters:
value
- New value for the entry.
-
getIndex
public int getIndex()Get the index of the entry.- Returns:
- the index of the entry.
-
setIndex
public void setIndex(int index) Set the index of the entry.- Parameters:
index
- New index for the entry.
-