1- __version__ = '0.4.3'
2- __author__ = ' Daniyal Akif'
3- 4- __license__ = ' MIT'
5- __description__ = ' A Python package for abstract linear algebra'
6- __url__ = ' https://github.com/daniyal1249/ablina'
1+ __version__ = "1.0.0"
2+ __author__ = " Daniyal Akif"
3+ 4+ __license__ = " MIT"
5+ __description__ = " A Python package for abstract linear algebra"
6+ __url__ = " https://github.com/daniyal1249/ablina"
77
88
9- from .field import Field , R , C
10- from .form import SesquilinearForm , InnerProduct , QuadraticForm
9+ from .field import Field , Reals , Complexes , R , C
10+ from .form import (
11+ FormError , InnerProductError , SesquilinearForm , InnerProduct , QuadraticForm
12+ )
1113from .linearmap import (
12- LinearMap , LinearOperator , LinearFunctional , Isomorphism , IdentityMap
14+ LinearMapError , LinearMap , LinearOperator , LinearFunctional , Isomorphism ,
15+ IdentityMap
1316 )
14- from .mathset import Set , negate
17+ from .mathset import Set , negate , remove_duplicates
1518from .matrix import Matrix , M
19+ from .parser import ParsingError , ConstraintError , sympify , split_constraint
20+ from .utils import (
21+ symbols , is_linear , is_empty , is_invertible , is_orthogonal , is_unitary ,
22+ is_normal , rref , of_arity , add_attributes
23+ )
1624from .vectorspace import (
17- Fn , VectorSpace , AffineSpace , fn , matrix_space , poly_space , hom ,
18- is_vectorspace , columnspace , rowspace , nullspace , left_nullspace ,
19- image , kernel
25+ NotAVectorSpaceError , Fn , VectorSpace , AffineSpace , fn , matrix_space ,
26+ poly_space , hom , is_vectorspace , columnspace , rowspace , nullspace ,
27+ left_nullspace , image , kernel
2028 )
29+ from .vs_utils import to_ns_matrix , to_complement
30+
2131
2232__all__ = [
23- 'Field' , 'R' , 'C' ,
24- 'SesquilinearForm' , 'InnerProduct' , 'QuadraticForm' ,
25- 'LinearMap' , 'LinearOperator' , 'LinearFunctional' , 'Isomorphism' ,
26- 'IdentityMap' ,
27- 'Set' , 'negate' ,
28- 'Matrix' , 'M' ,
29- 'Fn' , 'VectorSpace' , 'AffineSpace' , 'fn' , 'matrix_space' , 'poly_space' ,
30- 'hom' , 'is_vectorspace' , 'columnspace' , 'rowspace' , 'nullspace' ,
31- 'left_nullspace' , 'image' , 'kernel'
33+ "Field" , "Reals" , "Complexes" , "R" , "C" ,
34+ "FormError" , "InnerProductError" , "SesquilinearForm" , "InnerProduct" , "QuadraticForm" ,
35+ "LinearMapError" , "LinearMap" , "LinearOperator" , "LinearFunctional" , "Isomorphism" ,
36+ "IdentityMap" ,
37+ "Set" , "negate" , "remove_duplicates" ,
38+ "Matrix" , "M" ,
39+ "ParsingError" , "ConstraintError" , "sympify" , "split_constraint" ,
40+ "symbols" , "is_linear" , "is_empty" , "is_invertible" , "is_orthogonal" , "is_unitary" ,
41+ "is_normal" , "rref" , "of_arity" , "add_attributes" ,
42+ "NotAVectorSpaceError" , "Fn" , "VectorSpace" , "AffineSpace" , "fn" , "matrix_space" ,
43+ "poly_space" , "hom" , "is_vectorspace" , "columnspace" , "rowspace" , "nullspace" ,
44+ "left_nullspace" , "image" , "kernel" ,
45+ "to_ns_matrix" , "to_complement"
3246 ]
0 commit comments