Matrix
#
- class ansys.geometry.core.math.matrix.Matrix(shape, dtype=float, buffer=None, offset=0, strides=None, order=None)#
Bases:
numpy.ndarray
Provides matrix representation.
- Parameters:
- input
ndarray
|RealSequence
Matrix arguments as a
np.ndarray
class.
- input
Overview#
Get the determinant of the matrix. |
|
Provide the inverse of the matrix. |
Import detail#
from ansys.geometry.core.math.matrix import Matrix
Method detail#
- Matrix.determinant() ansys.geometry.core.typing.Real #
Get the determinant of the matrix.
- Matrix.__mul__(other: Matrix | numpy.ndarray) Matrix #
Get the multiplication of the matrix.