Class Matrix
- java.lang.Object
-
- org.apache.solr.client.solrj.io.eval.Matrix
-
- All Implemented Interfaces:
Iterable<List<Double>>
,Attributes
public class Matrix extends Object implements Iterable<List<Double>>, Attributes
-
-
Constructor Summary
Constructors Constructor Description Matrix(double[][] data)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getAttribute(String key)
Map<?,?>
getAttributes()
int
getColumnCount()
List<String>
getColumnLabels()
double[][]
getData()
int
getRowCount()
List<String>
getRowLabels()
Iterator<List<Double>>
iterator()
void
setAttribute(String key, Object value)
void
setColumnLabels(List<String> columnLabels)
void
setRowLabels(List<String> rowLables)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
getAttributes
public Map<?,?> getAttributes()
- Specified by:
getAttributes
in interfaceAttributes
-
setAttribute
public void setAttribute(String key, Object value)
- Specified by:
setAttribute
in interfaceAttributes
-
getAttribute
public Object getAttribute(String key)
- Specified by:
getAttribute
in interfaceAttributes
-
getData
public double[][] getData()
-
getRowCount
public int getRowCount()
-
getColumnCount
public int getColumnCount()
-
-