Example usage for org.apache.commons.math3.linear RealVectorPreservingVisitor visit

List of usage examples for org.apache.commons.math3.linear RealVectorPreservingVisitor visit

Introduction

In this page you can find the example usage for org.apache.commons.math3.linear RealVectorPreservingVisitor visit.

Prototype

void visit(int index, double value);

Source Link

Document

Visit one entry of the vector.

Usage

From source file:com.cloudera.oryx.common.math.SparseRealVector.java

private double doWalk(Iterator<Entry> it, RealVectorPreservingVisitor visitor) {
    int dim = getDimension();
    visitor.start(dim, 0, dim - 1);/*  w w w  . ja  v a  2  s. c  o  m*/
    while (it.hasNext()) {
        Entry e = it.next();
        visitor.visit(e.getIndex(), e.getValue());
    }
    return visitor.end();
}