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

from __future__ import absolute_import 

from .matrix_space import MatrixSpace 

from .constructor import (matrix, Matrix, column_matrix, random_matrix, 

diagonal_matrix, identity_matrix, block_matrix, 

block_diagonal_matrix, jordan_block, zero_matrix, 

ones_matrix, elementary_matrix, companion_matrix) 

from .berlekamp_massey import berlekamp_massey 

 

Mat = MatrixSpace