Interface Matrix<R,C>
-
- All Superinterfaces:
DataFrame<R,C,java.lang.Number>
- All Known Subinterfaces:
MutableMatrix<R,C>
- All Known Implementing Classes:
AbstractMatrix
,CacheDistanceMatrix
,CacheMatrix
,CalibratedDistanceMatrix
,ColumnCorrelationMatrix
,NormalizedMatrix
,NumberDataFrame
,OpMatrix
,SimpleMutableMatrix
,StatMatrix
public interface Matrix<R,C> extends DataFrame<R,C,java.lang.Number>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Vector<R>
getColumnVector(C column)
double
getDouble(R row, C column)
Vector<C>
getRowVector(R row)
boolean
isAvailable(R row, C column)
default Matrix<R,C>
scalarDivide(double denom)
default Matrix<R,C>
scalarMult(double mul)
default Matrix<R,C>
scalarPlus(double m2)
-
Methods inherited from interface com.macrofocus.molap.dataframe.DataFrame
addDataFrameListener, addWeakDataFrameListener, aggregate, aggregate, append, appendAndReindex, benchmark, columns, filter, getCentroid, getColumn, getColumnAddress, getColumnClass, getColumnCount, getColumnIndex, getColumnKey, getColumnName, getConstant, getCount, getCountDistinct, getCountDistinctWithNull, getDataFrameAggregation, getDistributiveStatistics, getFirst, getFirstQuartile, getMax, getMean, getMedian, getMin, getRandom, getRow, getRowAddress, getRowClass, getRowCount, getRowIndex, getRowKey, getStatistics, getStdDev, getSum, getThirdQuartile, getUnivariateStatistics, getValueAt, getVariance, getVarianceByPopulation, getWeightedMean, getWeightedSum, join, orderRows, print, print, printSchema, reindexColumns, reindexRows, reindexRows, reindexRows, reindexRows, reindexRows, remapColumns, removeColumns, removeDataFrameListener, removeDataFrameListeners, removeDuplicates, rows
-
-