diff options
author | Michael Schneeberger <michael.schneeberger@fhnw.ch> | 2022-08-17 17:20:35 +0200 |
---|---|---|
committer | Michael Schneeberger <michael.schneeberger@fhnw.ch> | 2022-08-17 17:20:35 +0200 |
commit | dcfe95fae5466e3ccffc9c27115aa9a45f01f537 (patch) | |
tree | 11c1765d884ee8249a2b53a484d0c6f4f152b633 | |
parent | 'to_matrix_repr' function requires 'variables' argument (diff) | |
download | polymatrix-dcfe95fae5466e3ccffc9c27115aa9a45f01f537.tar.gz polymatrix-dcfe95fae5466e3ccffc9c27115aa9a45f01f537.zip |
Update README
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ f2 = polymatrix.from_(x1 + x1*x2) f3 = f1 + f2 # prints the data structure of the expression -# ExpressionImpl(underlying=AdditionExprImpl(left=FromSympyExprImpl(data=((x1 + x2,),)), right=FromSympyExprImpl(data=((x1*x2 + x1,),)))) +# AdditionExprImpl(left=FromSympyExprImpl(data=((x1 + x2,),)), right=FromSympyExprImpl(data=((x1*x2 + x1,),))) print(f3) state, poly_matrix = f3.apply(state) |