coeff = matrix(QQ, [[-7, -6, -12], [5, 5, 7], [1, 0, 4]])
NameError Traceback (most recent call last) Cell In[1], line 1 ----> 1 coeff = matrix(QQ, [[-7, -6, -12], 2 [5, 5, 7], 3 [1, 0, 4]])
NameError: name 'matrix' is not defined
What to do?
| 1 | initial version |
coeff = matrix(QQ, [[-7, -6, -12], [5, 5, 7], [1, 0, 4]])
NameError Traceback (most recent call last) Cell In[1], line 1 ----> 1 coeff = matrix(QQ, [[-7, -6, -12], 2 [5, 5, 7], 3 [1, 0, 4]])
NameError: name 'matrix' is not defined
What to do?
| 2 | retagged |
coeff = matrix(QQ, [[-7, -6, -12], [5, 5, 7], [1, 0, 4]])
NameError Traceback (most recent call last) Cell In[1], line 1 ----> 1 coeff = matrix(QQ, [[-7, -6, -12], 2 [5, 5, 7], 3 [1, 0, 4]])
NameError: name 'matrix' is not defined
What to do?
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.