Returns an iterator that will go over the non zero values in the given vector. The iterator does not support the Iterator#remove() method. @return an iterator for the non zero index value pairs.
()
| 1011 | * @return an iterator for the non zero index value pairs. |
| 1012 | */ |
| 1013 | public Iterator<IndexValue> getNonZeroIterator() |
| 1014 | { |
| 1015 | return getNonZeroIterator(0); |
| 1016 | } |
| 1017 | |
| 1018 | /** |
| 1019 | * Returns an iterator that will go over the non zero values starting from |