Complex Matrix
Represents complex matrix. ComplexMatrix class is a subclass of ComplexTensor class.
Parameters
data
must fit into the shape of this matrix.
Constructors
ComplexMatrix
Link copied to clipboard
ComplexMatrix ComplexMatrix(Integer rows2, Integer cols2, Function2<Integer, Integer, ComplexDouble> lambda)
Content copied to clipboard
It is possible to set a value using lambda function.
ComplexMatrix
Link copied to clipboard
ComplexMatrix ComplexMatrix(Integer rows, Integer cols, Array<ComplexDouble> data)
Content copied to clipboard
Creates a new matrix.
Types
Functions
adjoint
Link copied to clipboard
columnWiseMean
Link copied to clipboard
colVecNormSq
Link copied to clipboard
concat
Link copied to clipboard
conjTrans
Link copied to clipboard
copy
Link copied to clipboard
div
Link copied to clipboard
eltwiseMul
Link copied to clipboard
flatten
Link copied to clipboard
frobeniusNormSquared
Link copied to clipboard
get
Link copied to clipboard
getData
Link copied to clipboard
getSubmatrix
Link copied to clipboard
ComplexMatrix getSubmatrix(Integer rowIndexStart, Integer rowIndexEnd, Integer colIndexStart, Integer colIndexEnd)
Content copied to clipboard
map
Link copied to clipboard
minorMatrix
Link copied to clipboard
minus
Link copied to clipboard
plus
Link copied to clipboard
pseudoEquals
Link copied to clipboard
reshape
Link copied to clipboard
rowVecNormSq
Link copied to clipboard
rowWiseMean
Link copied to clipboard
set
Link copied to clipboard
setSubmatrix
Link copied to clipboard
Unit setSubmatrix(Integer rowIndexStart, Integer rowIndexEnd, Integer colIndexStart, Integer colIndexEnd, ComplexMatrix other)
Content copied to clipboard
Set a submatrix by substituting other to desired position.
sum
Link copied to clipboard
switchRow
Link copied to clipboard
times
Link copied to clipboard
toComplexColVector
Link copied to clipboard
toComplexMatrix
Link copied to clipboard
toComplexRowVector
Link copied to clipboard
trace
Link copied to clipboard
transpose
Link copied to clipboard
unaryMinus
Link copied to clipboard
unaryPlus
Link copied to clipboard
Properties
Inheritors
Extensions
determinant
Link copied to clipboard
inverse
Link copied to clipboard
plu
Link copied to clipboard
rowEchelonForm
Link copied to clipboard