| Package | Description |
|---|---|
| smile.math.matrix |
Matrix interface, dense and sparse (band or irregular) matrix encapsulation
classes, LU, QR, Cholesky, SVD and eigen decompositions, etc.
|
| Modifier and Type | Method and Description |
|---|---|
Matrix |
Matrix.add(Matrix b)
A = A + B
|
Matrix |
Matrix.divide(double x)
Element-wise division A = A / x
|
Matrix |
Matrix.replaceNaN(double x)
Replaces NaN's with given value.
|
Matrix |
Matrix.scale(double x)
Element-wise multiplication A = A * x
|
Matrix |
Matrix.set(int i,
int j,
double x) |
Matrix |
Matrix.transpose()
Returns the matrix transpose.
|
| Modifier and Type | Method and Description |
|---|---|
Matrix |
Matrix.add(Matrix b)
A = A + B
|
Copyright © 2015. All rights reserved.