Example usage for org.apache.commons.math.linear RealVectorFormat format

List of usage examples for org.apache.commons.math.linear RealVectorFormat format

Introduction

In this page you can find the example usage for org.apache.commons.math.linear RealVectorFormat format.

Prototype

NumberFormat format

To view the source code for org.apache.commons.math.linear RealVectorFormat format.

Click Source Link

Document

The format used for components.

Usage

From source file:legato.indexer.DocVector.java

@Override
public String toString() {
    RealVectorFormat formatter = new RealVectorFormat();
    return formatter.format(vector);
}