Hello All,
Please see the code below. Is this a bug in simpy?
from sympy import *
a = Matrix([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
b = a
a.col_del(0)
print(a, b)
Expected answer: a = [ [2, 3]
[5, 6]
[8, 9]]
b = [ [1, 2, 3]
[4, 5, 6]
[7, 8, 9]]
Actual answer: a = [ [2, 3]
[5, 6]
[8, 9]]
b = [ [2, 3]
[5, 6]
[8, 9]]
Thanks
Ash
--
You received this message because you are subscribed to the Google Groups
"sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/sympy/bc6d9386-82d2-4a4e-bad6-675c914ea574%40googlegroups.com.