package math
Mathematical and statistical functions.
- Alphabetic
- By Inheritance
- math
- Operators
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- case class AbsMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class AbsVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class AcosMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class AcosVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class AsinMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class AsinVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class AtanMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class AtanVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class Ax(A: MatrixExpression, x: VectorExpression) extends VectorExpression with Product with Serializable
- case class CbrtMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class CbrtVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class CeilMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class CeilVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class ExpMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class ExpVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class Expm1Matrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class Expm1Vector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class FloorMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class FloorVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class Log10Matrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class Log10Vector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class Log1pMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class Log1pVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class Log2Matrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class Log2Vector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class LogMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class LogVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class MatrixAddMatrix(A: MatrixExpression, B: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class MatrixAddValue(A: MatrixExpression, y: Double) extends MatrixExpression with Product with Serializable
- case class MatrixDivMatrix(A: MatrixExpression, B: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class MatrixDivValue(A: MatrixExpression, y: Double) extends MatrixExpression with Product with Serializable
- sealed trait MatrixExpression extends AnyRef
- case class MatrixLift(A: DenseMatrix) extends MatrixExpression with Product with Serializable
- case class MatrixMulMatrix(A: MatrixExpression, B: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class MatrixMulValue(A: MatrixExpression, y: Double) extends MatrixExpression with Product with Serializable
- case class MatrixMultiplicationChain(A: Seq[MatrixExpression]) extends MatrixExpression with Product with Serializable
- case class MatrixMultiplicationExpression(A: MatrixExpression, B: MatrixExpression) extends MatrixExpression with Product with Serializable
-
class
MatrixOrderOptimization extends Logging
Optimizes the order of matrix multiplication chain.
Optimizes the order of matrix multiplication chain. Matrix multiplication is associative. However, the complexity of matrix multiplication chain is not associative.
- case class MatrixSubMatrix(A: MatrixExpression, B: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class MatrixSubValue(A: MatrixExpression, y: Double) extends MatrixExpression with Product with Serializable
- case class MatrixTranspose(A: MatrixExpression) extends MatrixExpression with Product with Serializable
-
trait
Operators extends AnyRef
High level feature selection operators.
- case class RoundMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class RoundVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class SinMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class SinVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class SqrtMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class SqrtVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class TanMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class TanVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class TanhMatrix(A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class TanhVector(x: VectorExpression) extends VectorExpression with Product with Serializable
- case class ValueAddMatrix(y: Double, A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class ValueAddVector(y: Double, x: VectorExpression) extends VectorExpression with Product with Serializable
- case class ValueDivMatrix(y: Double, A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class ValueDivVector(y: Double, x: VectorExpression) extends VectorExpression with Product with Serializable
- case class ValueMulMatrix(y: Double, A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class ValueMulVector(y: Double, x: VectorExpression) extends VectorExpression with Product with Serializable
- case class ValueSubMatrix(y: Double, A: MatrixExpression) extends MatrixExpression with Product with Serializable
- case class ValueSubVector(y: Double, x: VectorExpression) extends VectorExpression with Product with Serializable
- case class VectorAddValue(x: VectorExpression, y: Double) extends VectorExpression with Product with Serializable
- case class VectorAddVector(x: VectorExpression, y: VectorExpression) extends VectorExpression with Product with Serializable
- case class VectorDivValue(x: VectorExpression, y: Double) extends VectorExpression with Product with Serializable
- case class VectorDivVector(x: VectorExpression, y: VectorExpression) extends VectorExpression with Product with Serializable
-
sealed
trait
VectorExpression extends AnyRef
Vector Expression.
- case class VectorLift(x: Array[Double]) extends VectorExpression with Product with Serializable
- case class VectorMulValue(x: VectorExpression, y: Double) extends VectorExpression with Product with Serializable
- case class VectorMulVector(x: VectorExpression, y: VectorExpression) extends VectorExpression with Product with Serializable
- case class VectorSubValue(x: VectorExpression, y: Double) extends VectorExpression with Product with Serializable
- case class VectorSubVector(x: VectorExpression, y: VectorExpression) extends VectorExpression with Product with Serializable
Value Members
-
def
abs(x: MatrixExpression): AbsMatrix
- Definition Classes
- Operators
-
def
abs(x: VectorExpression): AbsVector
- Definition Classes
- Operators
-
def
acos(x: MatrixExpression): AcosMatrix
- Definition Classes
- Operators
-
def
acos(x: VectorExpression): AcosVector
- Definition Classes
- Operators
-
implicit
def
array2VectorExpression(x: Array[Double]): VectorLift
- Definition Classes
- Operators
-
def
asin(x: MatrixExpression): AsinMatrix
- Definition Classes
- Operators
-
def
asin(x: VectorExpression): AsinVector
- Definition Classes
- Operators
-
def
atan(x: MatrixExpression): AtanMatrix
- Definition Classes
- Operators
-
def
atan(x: VectorExpression): AtanVector
- Definition Classes
- Operators
-
def
beta(x: Double, y: Double): Double
The beta function, also called the Euler integral of the first kind.
The beta function, also called the Euler integral of the first kind.
B(x, y) = ∫01 tx-1 (1-t)y-1dt
for x, y > 0 and the integration is over [0,1].The beta function is symmetric, i.e. B(x,y) = B(y,x).
- Definition Classes
- Operators
-
def
cbrt(x: MatrixExpression): CbrtMatrix
- Definition Classes
- Operators
-
def
cbrt(x: VectorExpression): CbrtVector
- Definition Classes
- Operators
-
def
ceil(x: MatrixExpression): CeilMatrix
- Definition Classes
- Operators
-
def
ceil(x: VectorExpression): CeilVector
- Definition Classes
- Operators
-
def
chisqtest(table: Array[Array[Int]]): CorTest
Given a two-dimensional contingency table in the form of an array of integers, returns Chi-square test for independence.
Given a two-dimensional contingency table in the form of an array of integers, returns Chi-square test for independence. The rows of contingency table are labels by the values of one nominal variable, the columns are labels by the values of the other nominal variable, and whose entries are non-negative integers giving the number of observed events for each combination of row and column. Continuity correction will be applied when computing the test statistic for 2x2 tables: one half is subtracted from all |O-E| differences. The correlation coefficient is calculated as Cramer's V.
- Definition Classes
- Operators
-
def
chisqtest(x: Array[Int], prob: Array[Double], constraints: Int = 1): ChiSqTest
One-sample chisq test.
One-sample chisq test. Given the array x containing the observed numbers of events, and an array prob containing the expected probabilities of events, and given the number of constraints (normally one), a small value of p-value indicates a significant difference between the distributions.
- Definition Classes
- Operators
-
def
chisqtest2(x: Array[Int], y: Array[Int], constraints: Int = 1): ChiSqTest
Two-sample chisq test.
Two-sample chisq test. Given the arrays x and y, containing two sets of binned data, and given one constraint, a small value of p-value indicates a significant difference between two distributions.
- Definition Classes
- Operators
-
def
cholesky(A: MatrixExpression): Cholesky
Cholesky decomposition.
Cholesky decomposition.
- Definition Classes
- Operators
-
def
cholesky(A: DenseMatrix): Cholesky
Cholesky decomposition.
Cholesky decomposition.
- Definition Classes
- Operators
-
def
cholesky(A: Array[Array[Double]]): Cholesky
Cholesky decomposition.
Cholesky decomposition.
- Definition Classes
- Operators
-
def
det(A: MatrixExpression): Double
Returns the determinant of matrix.
Returns the determinant of matrix.
- Definition Classes
- Operators
-
def
det(A: DenseMatrix): Double
Returns the determinant of matrix.
Returns the determinant of matrix.
- Definition Classes
- Operators
-
def
diag(A: Matrix): Array[Double]
Returns the diagonal elements of matrix.
Returns the diagonal elements of matrix.
- Definition Classes
- Operators
-
def
digamma(x: Double): Double
The digamma function is defined as the logarithmic derivative of the gamma function.
The digamma function is defined as the logarithmic derivative of the gamma function.
- Definition Classes
- Operators
-
def
eig(A: MatrixExpression): Array[Double]
Returns eigen values.
Returns eigen values.
- Definition Classes
- Operators
-
def
eig(A: DenseMatrix): Array[Double]
Returns eigen values.
Returns eigen values.
- Definition Classes
- Operators
-
def
eig(A: Array[Array[Double]]): Array[Double]
Returns eigen values.
Returns eigen values.
- Definition Classes
- Operators
-
def
eigen(A: DenseMatrix, k: Int, kappa: Double = 1E-8, maxIter: Int = -1): EVD
Eigen decomposition.
Eigen decomposition.
- Definition Classes
- Operators
-
def
eigen(A: MatrixExpression): EVD
Eigen decomposition.
Eigen decomposition.
- Definition Classes
- Operators
-
def
eigen(A: DenseMatrix): EVD
Eigen decomposition.
Eigen decomposition.
- Definition Classes
- Operators
-
def
eigen(A: Array[Array[Double]]): EVD
Eigen decomposition.
Eigen decomposition.
- Definition Classes
- Operators
-
def
erf(x: Double): Double
The error function (also called the Gauss error function) is a special function of sigmoid shape which occurs in probability, statistics, materials science, and partial differential equations.
The error function (also called the Gauss error function) is a special function of sigmoid shape which occurs in probability, statistics, materials science, and partial differential equations. It is defined as:
erf(x) = ∫0x e-t2dt
The complementary error function, denoted erfc, is defined as erfc(x) = 1 - erf(x). The error function and complementary error function are special cases of the incomplete gamma function.
- Definition Classes
- Operators
-
def
erfc(x: Double): Double
The complementary error function.
The complementary error function.
- Definition Classes
- Operators
-
def
erfcc(x: Double): Double
The complementary error function with fractional error everywhere less than 1.2 × 10-7.
The complementary error function with fractional error everywhere less than 1.2 × 10-7. This concise routine is faster than erfc.
- Definition Classes
- Operators
-
def
exp(x: MatrixExpression): ExpMatrix
- Definition Classes
- Operators
-
def
exp(x: VectorExpression): ExpVector
- Definition Classes
- Operators
-
def
expm1(x: MatrixExpression): Expm1Matrix
- Definition Classes
- Operators
-
def
expm1(x: VectorExpression): Expm1Vector
- Definition Classes
- Operators
-
def
eye(m: Int, n: Int): DenseMatrix
Returns an m-by-n identity matrix.
Returns an m-by-n identity matrix.
- Definition Classes
- Operators
-
def
eye(n: Int): DenseMatrix
Returns an n-by-n identity matrix.
Returns an n-by-n identity matrix.
- Definition Classes
- Operators
-
def
floop(x: MatrixExpression): FloorMatrix
- Definition Classes
- Operators
-
def
floop(x: VectorExpression): FloorVector
- Definition Classes
- Operators
-
def
ftest(x: Array[Double], y: Array[Double]): FTest
Test if the arrays x and y have significantly different variances.
Test if the arrays x and y have significantly different variances. Small values of p-value indicate that the two arrays have significantly different variances.
- Definition Classes
- Operators
-
def
gamma(x: Double): Double
Gamma function.
Gamma function. Lanczos approximation (6 terms).
- Definition Classes
- Operators
-
def
inv(A: MatrixExpression): DenseMatrix
Returns the inverse of matrix.
Returns the inverse of matrix.
- Definition Classes
- Operators
-
def
inv(A: DenseMatrix): DenseMatrix
Returns the inverse of matrix.
Returns the inverse of matrix.
- Definition Classes
- Operators
-
def
inverf(p: Double): Double
The inverse error function.
The inverse error function.
- Definition Classes
- Operators
-
def
inverfc(p: Double): Double
The inverse complementary error function.
The inverse complementary error function.
- Definition Classes
- Operators
-
def
kendalltest(x: Array[Double], y: Array[Double]): CorTest
Kendall rank correlation test.
Kendall rank correlation test. The Kendall Tau Rank Correlation Coefficient is used to measure the degree of correspondence between sets of rankings where the measures are not equidistant. It is used with non-parametric data. The p-value is calculated by approximation, which is good for n > 10.
- Definition Classes
- Operators
-
def
kstest(x: Array[Double], y: Array[Double]): KSTest
The two-sample KS test for the null hypothesis that the data sets are drawn from the same distribution.
The two-sample KS test for the null hypothesis that the data sets are drawn from the same distribution. Small values of p-value show that the cumulative distribution function of x is significantly different from that of y. The arrays x and y are modified by being sorted into ascending order.
- Definition Classes
- Operators
-
def
kstest(x: Array[Double], y: Distribution): KSTest
The one-sample KS test for the null hypothesis that the data set x is drawn from the given distribution.
The one-sample KS test for the null hypothesis that the data set x is drawn from the given distribution. Small values of p-value show that the cumulative distribution function of x is significantly different from the given distribution. The array x is modified by being sorted into ascending order.
- Definition Classes
- Operators
-
def
lgamma(x: Double): Double
log of the Gamma function.
log of the Gamma function. Lanczos approximation (6 terms)
- Definition Classes
- Operators
-
def
log(x: MatrixExpression): LogMatrix
- Definition Classes
- Operators
-
def
log(x: VectorExpression): LogVector
- Definition Classes
- Operators
-
def
log10(x: MatrixExpression): Log10Matrix
- Definition Classes
- Operators
-
def
log10(x: VectorExpression): Log10Vector
- Definition Classes
- Operators
-
def
log1p(x: MatrixExpression): Log1pMatrix
- Definition Classes
- Operators
-
def
log1p(x: VectorExpression): Log1pVector
- Definition Classes
- Operators
-
def
log2(x: MatrixExpression): Log2Matrix
- Definition Classes
- Operators
-
def
log2(x: VectorExpression): Log2Vector
- Definition Classes
- Operators
-
def
lu(A: MatrixExpression): LU
LU decomposition.
LU decomposition.
- Definition Classes
- Operators
-
def
lu(A: DenseMatrix): LU
LU decomposition.
LU decomposition.
- Definition Classes
- Operators
-
def
lu(A: Array[Array[Double]]): LU
LU decomposition.
LU decomposition.
- Definition Classes
- Operators
-
implicit
def
matrix2MatrixExpression(x: DenseMatrix): MatrixLift
- Definition Classes
- Operators
-
implicit
def
matrixExpression2Array(exp: MatrixExpression): DenseMatrix
- Definition Classes
- Operators
-
def
ones(m: Int, n: Int): DenseMatrix
Returns an m-by-n matrix of all ones.
Returns an m-by-n matrix of all ones.
- Definition Classes
- Operators
-
def
ones(n: Int): DenseMatrix
Returns an n-by-n matrix of all ones.
Returns an n-by-n matrix of all ones.
- Definition Classes
- Operators
-
def
pearsontest(x: Array[Double], y: Array[Double]): CorTest
Pearson correlation coefficient test.
Pearson correlation coefficient test.
- Definition Classes
- Operators
-
implicit
def
pimpArray2D(data: Array[Array[Double]]): PimpedArray2D
- Definition Classes
- Operators
-
implicit
def
pimpDouble(x: Double): PimpedDouble
- Definition Classes
- Operators
-
implicit
def
pimpDoubleArray(data: Array[Double]): PimpedDoubleArray
- Definition Classes
- Operators
-
implicit
def
pimpIntArray(data: Array[Int]): PimpedArray[Int]
- Definition Classes
- Operators
-
implicit
def
pimpMatrix(matrix: DenseMatrix): PimpedMatrix
- Definition Classes
- Operators
-
def
qr(A: MatrixExpression): QR
QR decomposition.
QR decomposition.
- Definition Classes
- Operators
-
def
qr(A: DenseMatrix): QR
QR decomposition.
QR decomposition.
- Definition Classes
- Operators
-
def
qr(A: Array[Array[Double]]): QR
QR decomposition.
QR decomposition.
- Definition Classes
- Operators
-
def
randn(m: Int, n: Int, mu: Double = 0.0, sigma: Double = 1.0): DenseMatrix
Returns an m-by-n matrix of normally distributed random numbers.
Returns an m-by-n matrix of normally distributed random numbers.
- Definition Classes
- Operators
-
def
rank(A: MatrixExpression): Int
Returns the rank of matrix.
Returns the rank of matrix.
- Definition Classes
- Operators
-
def
rank(A: DenseMatrix): Int
Returns the rank of matrix.
Returns the rank of matrix.
- Definition Classes
- Operators
-
def
round(x: MatrixExpression): RoundMatrix
- Definition Classes
- Operators
-
def
round(x: VectorExpression): RoundVector
- Definition Classes
- Operators
-
def
sin(x: MatrixExpression): SinMatrix
- Definition Classes
- Operators
-
def
sin(x: VectorExpression): SinVector
- Definition Classes
- Operators
-
def
spearmantest(x: Array[Double], y: Array[Double]): CorTest
Spearman rank correlation coefficient test.
Spearman rank correlation coefficient test. The Spearman Rank Correlation Coefficient is a form of the Pearson coefficient with the data converted to rankings (ie. when variables are ordinal). It can be used when there is non-parametric data and hence Pearson cannot be used.
The raw scores are converted to ranks and the differences between the ranks of each observation on the two variables are calculated.
The p-value is calculated by approximation, which is good for n > 10.
- Definition Classes
- Operators
-
def
sqrt(x: MatrixExpression): SqrtMatrix
- Definition Classes
- Operators
-
def
sqrt(x: VectorExpression): SqrtVector
- Definition Classes
- Operators
-
def
svd(A: DenseMatrix, k: Int, kappa: Double = 1E-8, maxIter: Int = -1): SVD
SVD decomposition.
SVD decomposition.
- Definition Classes
- Operators
-
def
svd(A: MatrixExpression): SVD
SVD decomposition.
SVD decomposition.
- Definition Classes
- Operators
-
def
svd(A: DenseMatrix): SVD
SVD decomposition.
SVD decomposition.
- Definition Classes
- Operators
-
def
svd(A: Array[Array[Double]]): SVD
SVD decomposition.
SVD decomposition.
- Definition Classes
- Operators
-
def
tan(x: MatrixExpression): TanMatrix
- Definition Classes
- Operators
-
def
tan(x: VectorExpression): TanVector
- Definition Classes
- Operators
-
def
tanh(x: MatrixExpression): TanhMatrix
- Definition Classes
- Operators
-
def
tanh(x: VectorExpression): TanhVector
- Definition Classes
- Operators
-
def
trace(A: Matrix): Double
Returns the trace of matrix.
Returns the trace of matrix.
- Definition Classes
- Operators
-
def
ttest(x: Array[Double], y: Array[Double]): TTest
Given the paired arrays x and y, test if they have significantly different means.
Given the paired arrays x and y, test if they have significantly different means. Small values of p-value indicate that the two arrays have significantly different means.
- Definition Classes
- Operators
-
def
ttest(x: Array[Double], mean: Double): TTest
Independent one-sample t-test whether the mean of a normally distributed population has a value specified in a null hypothesis.
Independent one-sample t-test whether the mean of a normally distributed population has a value specified in a null hypothesis. Small values of p-value indicate that the array has significantly different mean.
- Definition Classes
- Operators
-
def
ttest2(x: Array[Double], y: Array[Double], equalVariance: Boolean = false): TTest
Test if the arrays x and y have significantly different means.
Test if the arrays x and y have significantly different means. Small values of p-value indicate that the two arrays have significantly different means.
- equalVariance
true if the data arrays are assumed to be drawn from populations with the same true variance. Otherwise, The data arrays are allowed to be drawn from populations with unequal variances.
- Definition Classes
- Operators
-
implicit
def
vectorExpression2Array(exp: VectorExpression): Array[Double]
- Definition Classes
- Operators
-
def
zeros(m: Int, n: Int): DenseMatrix
Returns an m-by-n zero matrix.
Returns an m-by-n zero matrix.
- Definition Classes
- Operators
-
def
zeros(n: Int): DenseMatrix
Returns an n-by-n zero matrix.
Returns an n-by-n zero matrix.
- Definition Classes
- Operators
High level Smile operators in Scala.