ComplexMatrix

class ComplexMatrix(*args)

Complex Matrix.

Parameters:
nrinteger

The number of rows of the complex matrix.

ncinteger

The number of columns of the complex matrix.

valuessequence of complex number, optional

The sequence must have n_r \times n_c elements. It might be a ComplexCollection or a ScalarCollection. Default is (0, 0).

See also

ComplexTensor

Examples

>>> import openturns as ot
>>> m = ot.ComplexMatrix(2, 2, [1+2j, 3+4j , 5+6j, 7+8j])
>>> print(m)
[[ (1,2) (5,6) ]
 [ (3,4) (7,8) ]]
>>> m = ot.ComplexMatrix(2, 3, range(2*3))
>>> print(m)
[[ (0,0) (2,0) (4,0) ]
 [ (1,0) (3,0) (5,0) ]]

Create a matrix from a numpy array:

>>> import numpy as np
>>> array = np.array([[1, 2], [3, 4], [5, 6]])
>>> m = ot.ComplexMatrix(array)
>>> print(m)
[[ (1,0) (2,0) ]
 [ (3,0) (4,0) ]
 [ (5,0) (6,0) ]]

Methods

clean(threshold)

Clean the matrix according to a specific threshold.

conjugate()

Accessor to the conjugate complex matrix.

conjugateTranspose()

Accessor to the transposed conjugate complex matrix.

getClassName()

Accessor to the object's name.

getId()

Accessor to the object's id.

getImplementation()

Accessor to the underlying implementation.

getName()

Accessor to the object's name.

getNbColumns()

Accessor to the number of columns.

getNbRows()

Accessor to the number of rows.

imag()

Accessor to the imaginary part.

isEmpty()

Test whether the matrix is empty or not.

real()

Accessor to the real part.

setName(name)

Accessor to the object's name.

solveLinearSystem(*args)

Solve a system of linear equations.

solveLinearSystemInPlace(*args)

Solve a system of linear equations.

transpose()

Accessor to the transposed complex matrix.

__init__(*args)
clean(threshold)

Clean the matrix according to a specific threshold.

Parameters:
thresholdpositive float

Numerical sample which is the collection of points stored by the history strategy.

conjugate()

Accessor to the conjugate complex matrix.

Returns:
NComplexMatrix

The conjugate matrix \mat{N} of size n_r \times n_c associated with the given complex matrix \mat{M} such as N_{i, j} = \overline{M}_{i, j}.

conjugateTranspose()

Accessor to the transposed conjugate complex matrix.

Returns:
NComplexMatrix

The transposed conjugate matrix \mat{N} of size n_c \times n_r associated with the given complex matrix \mat{M} such as N_{i, j} = \overline{M}_{j, i}.

getClassName()

Accessor to the object’s name.

Returns:
class_namestr

The object class name (object.__class__.__name__).

getId()

Accessor to the object’s id.

Returns:
idint

Internal unique identifier.

getImplementation()

Accessor to the underlying implementation.

Returns:
implImplementation

A copy of the underlying implementation object.

getName()

Accessor to the object’s name.

Returns:
namestr

The name of the object.

getNbColumns()

Accessor to the number of columns.

Returns:
ncinteger

The number of columns of \mat{M}.

getNbRows()

Accessor to the number of rows.

Returns:
nrinteger

The number of rows of \mat{M}.

imag()

Accessor to the imaginary part.

Returns:
imatMatrix

A real matrix \mat{A} of size n_r \times n_c such A_{i, j} = \mathrm{Im} (M_{i, j}).

isEmpty()

Test whether the matrix is empty or not.

Returns:
isEmptybool

Flag telling whether the dimensions of the matrix is zero.

real()

Accessor to the real part.

Returns:
rmatMatrix

A real matrix \mat{A} of size n_r \times n_c such A_{i, j} = \mathrm{Re} (M_{i, j}).

setName(name)

Accessor to the object’s name.

Parameters:
namestr

The name of the object.

solveLinearSystem(*args)

Solve a system of linear equations.

Parameters:
BComplexMatrix

Second member

Returns:
XComplexMatrix

The solution to A * X = B.

solveLinearSystemInPlace(*args)

Solve a system of linear equations.

Parameters:
BComplexMatrix

Second member

Returns:
XComplexMatrix

The solution to A * X = B.

Notes

Unlike solveLinearSystem() this method does not copy the matrix A and alters it in-place during the resolution, so the content of A may change.

transpose()

Accessor to the transposed complex matrix.

Returns:
NComplexMatrix

The transposed matrix \mat{N} of size n_c \times n_r associated with the given complex matrix \mat{M} such as N_{i, j} = M_{j, i}.

Examples using the class

Create a spectral model

Create a spectral model