|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface BasicEntrywiseDoubleCalculations
Method Summary | |
---|---|
Matrix |
abs(Calculation.Ret returnType)
Calculates the absolute values of all entries in a Matrix. |
Matrix |
exp(Calculation.Ret returnType)
Calculates the exponential function all entries in the Matrix. |
Matrix |
log(Calculation.Ret returnType)
Calculates the natural logarithm of all entries in the Matrix. |
Matrix |
log10(Calculation.Ret returnType)
Calculates the logarithm with basis 10 of all entries in the Matrix. |
Matrix |
log2(Calculation.Ret returnType)
Calculates the logarithm with basis 2 of all entries in the Matrix. |
Matrix |
power(Calculation.Ret returnType,
double power)
Calculates this matrix to the power of the given value (entrywise). |
Matrix |
power(Calculation.Ret returnType,
Matrix power)
Calculates this matrix to the power of the given matrix (entrywise). |
Matrix |
sign(Calculation.Ret returnType)
Calculates the sign of the entries in a Matrix. |
Matrix |
sqrt(Calculation.Ret returnType)
Calculates the square root of all the entries in a Matrix. |
Method Detail |
---|
Matrix abs(Calculation.Ret returnType) throws MatrixException
returnType
- Select whether a new or a linked Matrix is returned, or if the
operation is performed on the original Matrix
MatrixException
Matrix log2(Calculation.Ret returnType) throws MatrixException
returnType
- Select whether a new or a linked Matrix is returned, or if the
operation is performed on the original Matrix
MatrixException
Matrix log10(Calculation.Ret returnType) throws MatrixException
returnType
- Select whether a new or a linked Matrix is returned, or if the
operation is performed on the original Matrix
MatrixException
Matrix log(Calculation.Ret returnType) throws MatrixException
returnType
- Select whether a new or a linked Matrix is returned, or if the
operation is performed on the original Matrix
MatrixException
Matrix exp(Calculation.Ret returnType) throws MatrixException
returnType
- Select whether a new or a linked Matrix is returned, or if the
operation is performed on the original Matrix
MatrixException
Matrix sign(Calculation.Ret returnType) throws MatrixException
returnType
- Select whether a new or a linked Matrix is returned, or if the
operation is performed on the original Matrix
MatrixException
Matrix sqrt(Calculation.Ret returnType) throws MatrixException
returnType
- Select whether a new or a linked Matrix is returned, or if the
operation is performed on the original Matrix
MatrixException
Matrix power(Calculation.Ret returnType, Matrix power) throws MatrixException
returnType
- Select whether a new or a linked Matrix is returned, or if the
operation is performed on the original Matrixmatrix
- the second matrix
MatrixException
Matrix power(Calculation.Ret returnType, double power) throws MatrixException
returnType
- Select whether a new or a linked Matrix is returned, or if the
operation is performed on the original Matrixvalue
- power factor
MatrixException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |