Example usage for org.apache.commons.math3.linear RealVectorChangingVisitor end

List of usage examples for org.apache.commons.math3.linear RealVectorChangingVisitor end

Introduction

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

Prototype

double end();

Source Link

Document

End visiting a vector.

Usage

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

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