diff options
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ to give an overview. monomial_str = "" for idx in term: var = state.from_index(idx) - monomial_str += f"{var.name}^{idx.power} " + monomial_str += f"{var}^{idx.power} " # Get the coefficient coeff = sparse.at(entry, term) |