Uses of Class
com.pervasive.datarush.analytics.pmml.PMMLRealMatrix
-
Packages that use PMMLRealMatrix Package Description com.pervasive.datarush.analytics.pmml Provides shared and base classes for PMML model representation of Analytics algorithms.com.pervasive.datarush.analytics.stats Provides various statistics, Data Summarizer, and Data Quality Analyzer. -
-
Uses of PMMLRealMatrix in com.pervasive.datarush.analytics.pmml
Methods in com.pervasive.datarush.analytics.pmml that return PMMLRealMatrix Modifier and Type Method Description static <T extends Number>
PMMLRealMatrix<T>PMMLRealMatrix. dense(Class<?> type)
Creates a new dense matrixstatic <T extends Number>
PMMLRealMatrix<T>PMMLRealMatrix. diagonal(Class<?> type)
Creates a new diagonal matrix.abstract PMMLRealMatrix<T>
PMMLRealMatrix. ensureSize(int numRows, int numCols)
Sizes the matrix to the given number of rows and columnsstatic <T extends Number>
PMMLRealMatrix<T>PMMLRealMatrix. parse(Element e)
Parses the given matrix elementstatic <T extends Number>
PMMLRealMatrix<T>PMMLRealMatrix. sparse(T diagDefault, T offDiagDefault)
Creates a new sparse matrixstatic <T extends Number>
PMMLRealMatrix<T>PMMLRealMatrix. symmetric(Class<?> type)
Creates a new symmetric matrix. -
Uses of PMMLRealMatrix in com.pervasive.datarush.analytics.stats
Methods in com.pervasive.datarush.analytics.stats that return PMMLRealMatrix Modifier and Type Method Description PMMLRealMatrix
BivariateNumericInfo. getCorrelation()
Returns the correlation matrix for the set of fields represented by thisBivariateStats
.PMMLRealMatrix
BivariateNumericInfo. getCovariance()
Returns the covariance matrix for the set of fields represented by thisBivariateStats
.Methods in com.pervasive.datarush.analytics.stats with parameters of type PMMLRealMatrix Modifier and Type Method Description void
BivariateNumericInfo. setCorrelation(PMMLRealMatrix correlation)
Sets the correlation matrix for the set of fields represented by thisBivariateStats
.void
BivariateNumericInfo. setCovariance(PMMLRealMatrix covariance)
Sets the covariance matrix for the set of fields represented by thisBivariateStats
.
-