Creates a new matrix that is a combination of this matrix and matrix B.
Creates a new matrix that is a combination of this matrix and matrix B.
Concatenates all the matrices together along their columns.
Concatenates all the matrices together along their columns.
Concatenates all the matrices together along their columns.
Concatenates all the matrices together along their columns.
double
Computes the dot product (a.k.a.
double
Computes the dot product (a.k.a.
Returns a matrix which is the result of an element by element division of 'this' and 'b':
ci,j = ai,j/bi,j
Returns a matrix which is the result of an element by element division of 'this' and 'b':
ci,j = ai,j/bi,j
Returns a matrix which is the result of an element by element multiplication of 'this' and 'b':
ci,j = ai,j*bi,j
Returns a matrix which is the result of an element by element multiplication of 'this' and 'b':
ci,j = ai,j*bi,j
Returns a matrix which is the result of an element by element power of 'this' and 'b':
ci,j = ai,j ^ bi,j
Returns a matrix which is the result of an element by element power of 'this' and 'b':
ci,j = ai,j ^ bi,j
boolean
Checks to see if matrix 'a' is the same as this matrix within the specified
tolerance.
boolean
Checks to see if matrix 'a' is the same as this matrix within the specified
tolerance.
Computes the Kronecker product between this matrix and the provided B matrix:
C = kron(A,B)
Computes the Kronecker product between this matrix and the provided B matrix:
C = kron(A,B)
Returns the result of matrix subtraction:
c = a - b
where c is the returned matrix, a is this matrix, and b is the passed in matrix.
Returns the result of matrix subtraction:
c = a - b
where c is the returned matrix, a is this matrix, and b is the passed in matrix.
Returns a matrix which is the result of matrix multiplication:
c = a * b
where c is the returned matrix, a is this matrix, and b is the passed in matrix.
Returns a matrix which is the result of matrix multiplication:
c = a * b
where c is the returned matrix, a is this matrix, and b is the passed in matrix.
Performs a matrix addition and scale operation.
c = a + β*b
where c is the returned matrix, a is this matrix, and b is the passed in matrix.
Returns the result of matrix addition:
c = a + b
where c is the returned matrix, a is this matrix, and b is the passed in matrix.
Performs a matrix addition and scale operation.
c = a + β*b
where c is the returned matrix, a is this matrix, and b is the passed in matrix.
Returns the result of matrix addition:
c = a + b
where c is the returned matrix, a is this matrix, and b is the passed in matrix.
void
Copies the vector into the specified column.
void
Copies the vector into the specified row.
Solves for X in the following equation:
x = a-1b
where 'a' is this matrix and 'b' is an n by p matrix.
Solves for X in the following equation:
x = a-1b
where 'a' is this matrix and 'b' is an n by p matrix.
void
void