Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

""" A module which handles Matrix Expressions """ 

 

from .slice import MatrixSlice 

from .blockmatrix import BlockMatrix, BlockDiagMatrix, block_collapse, blockcut 

from .funcmatrix import FunctionMatrix 

from .inverse import Inverse 

from .matadd import MatAdd 

from .matexpr import (Identity, MatrixExpr, MatrixSymbol, ZeroMatrix, 

     matrix_symbols) 

from .matmul import MatMul 

from .matpow import MatPow 

from .trace import Trace, trace 

from .determinant import Determinant, det 

from .transpose import Transpose 

from .adjoint import Adjoint 

from .hadamard import hadamard_product, HadamardProduct 

from .diagonal import DiagonalMatrix, DiagonalOf