Uses of Class
com.pervasive.datarush.analytics.pmml.PMMLRealMatrix
Packages that use PMMLRealMatrix
Package
Description
Provides shared and base classes for PMML model representation of Analytics algorithms.
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 PMMLRealMatrixModifier and TypeMethodDescriptionstatic <T extends Number>
PMMLRealMatrix<T>Creates a new dense matrixstatic <T extends Number>
PMMLRealMatrix<T>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>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>Creates a new symmetric matrix. -
Uses of PMMLRealMatrix in com.pervasive.datarush.analytics.stats
Methods in com.pervasive.datarush.analytics.stats that return PMMLRealMatrixModifier and TypeMethodDescriptionBivariateNumericInfo.getCorrelation()Returns the correlation matrix for the set of fields represented by thisBivariateStats.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 PMMLRealMatrixModifier and TypeMethodDescriptionvoidBivariateNumericInfo.setCorrelation(PMMLRealMatrix correlation) Sets the correlation matrix for the set of fields represented by thisBivariateStats.voidBivariateNumericInfo.setCovariance(PMMLRealMatrix covariance) Sets the covariance matrix for the set of fields represented by thisBivariateStats.