https://github.com/statycc/pymwp
Raw File
Tip revision: 0f004aa33b5531e935a524969924d231beb15572 authored by Neea Rusch on 08 March 2022, 03:10:52 UTC
changes to eval and choice representation (#78)
Tip revision: 0f004aa
matrix.md
# matrix.py

Helper methods for working with matrices.

To create matrices:

```python
from pymwp.matrix import init_matrix, identity_matrix
```

To compute matrix sum and product:

```python
from pymwp.matrix import matrix_prod, matrix_sum
```

Other utility methods:

```python
from pymwp.matrix import equals, fixpoint, show, resize, encode, decode
```

::: pymwp.matrix
back to top