Matrix<java.lang.Boolean> |
BooleanMatrix.boxed() |
Matrix<java.lang.Byte> |
ByteMatrix.boxed() |
Matrix<java.lang.Character> |
CharMatrix.boxed() |
Matrix<java.lang.Double> |
DoubleMatrix.boxed() |
Matrix<java.lang.Float> |
FloatMatrix.boxed() |
Matrix<java.lang.Integer> |
IntMatrix.boxed() |
Matrix<java.lang.Long> |
LongMatrix.boxed() |
Matrix<java.lang.Short> |
ShortMatrix.boxed() |
Matrix<T> |
Matrix.copy() |
Matrix<T> |
Matrix.copy(int fromRowIndex,
int toRowIndex) |
Matrix<T> |
Matrix.copy(int fromRowIndex,
int toRowIndex,
int fromColumnIndex,
int toColumnIndex) |
static <T> Matrix<T> |
Matrix.diagonal(T[] leftUp2RighDownDiagonal,
T[] rightUp2LeftDownDiagonal) |
static <T> Matrix<T> |
Matrix.diagonalLU2RD(T[] leftUp2RighDownDiagonal) |
static <T> Matrix<T> |
Matrix.diagonalRU2LD(T[] rightUp2LeftDownDiagonal) |
Matrix<T> |
Matrix.flipH() |
Matrix<T> |
Matrix.flipV() |
Matrix<T> |
Matrix.hstack(Matrix<T> b) |
<R> Matrix<R> |
Matrix.map(java.lang.Class<R> cls,
Function<? super T,R> func) |
Matrix<T> |
Matrix.map(Function<? super T,T> func) |
<T> Matrix<T> |
BooleanMatrix.mapToObj(java.lang.Class<T> cls,
BooleanFunction<? extends T> func) |
<T> Matrix<T> |
ByteMatrix.mapToObj(java.lang.Class<T> cls,
ByteFunction<? extends T> func) |
<T> Matrix<T> |
CharMatrix.mapToObj(java.lang.Class<T> cls,
CharFunction<? extends T> func) |
<T> Matrix<T> |
DoubleMatrix.mapToObj(java.lang.Class<T> cls,
DoubleFunction<? extends T> func) |
<T> Matrix<T> |
FloatMatrix.mapToObj(java.lang.Class<T> cls,
FloatFunction<? extends T> func) |
<T> Matrix<T> |
IntMatrix.mapToObj(java.lang.Class<T> cls,
IntFunction<? extends T> func) |
<T> Matrix<T> |
LongMatrix.mapToObj(java.lang.Class<T> cls,
LongFunction<? extends T> func) |
<T> Matrix<T> |
ShortMatrix.mapToObj(java.lang.Class<T> cls,
ShortFunction<? extends T> func) |
static <T> Matrix<T> |
f.matrix(T[][] a) |
static <T> Matrix<T> |
f.matrix(T[][] a,
int m) |
static <T> Matrix<T> |
f.matrix(T[][] a,
int n,
int m) |
static <T> Matrix<T> |
f.matrix(T[][] a,
int n,
int m,
T valueForDefault) |
static <T> Matrix<T> |
Matrix.of(T[]... a) |
static <T> Matrix<T> |
Matrix.repeat(T val,
int len) |
Matrix<T> |
Matrix.repelem(int rowRepeats,
int colRepeats)
Repeat elements rowRepeats times in row direction and colRepeats times in column direction.
|
Matrix<T> |
Matrix.repmat(int rowRepeats,
int colRepeats)
Repeat this matrix rowRepeats times in row direction and colRepeats times in column direction.
|
Matrix<T> |
Matrix.reshape(int newRows,
int newCols) |
Matrix<T> |
Matrix.rotate180() |
Matrix<T> |
Matrix.rotate270() |
Matrix<T> |
Matrix.rotate90() |
Matrix<E> |
Sheet.toMatrixH(java.lang.Class<E> cls) |
Matrix<E> |
Sheet.toMatrixV(java.lang.Class<E> cls) |
Matrix<T> |
Matrix.transpose() |
Matrix<T> |
Matrix.vstack(Matrix<? extends T> b) |
<B,R> Matrix<R> |
Matrix.zipWith(java.lang.Class<R> cls,
Matrix<B> matrixB,
BiFunction<? super T,? super B,R> zipFunction) |
<B,C,R> Matrix<R> |
Matrix.zipWith(java.lang.Class<R> cls,
Matrix<B> matrixB,
Matrix<C> matrixC,
TriFunction<? super T,? super B,? super C,R> zipFunction) |
<B> Matrix<T> |
Matrix.zipWith(Matrix<B> matrixB,
BiFunction<? super T,? super B,T> zipFunction) |
<B,C> Matrix<T> |
Matrix.zipWith(Matrix<B> matrixB,
Matrix<C> matrixC,
TriFunction<? super T,? super B,? super C,T> zipFunction) |