You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Came across this while working on #6339.
If m1 := Matrix( Integers, [ [1,1], [0,1] ] ); then m1^2 is calculated correctly.
But if m1 := Matrix( Rationals, [ [1,1], [0,1] ] ); then m1^2 throws an error.
Came across this while working on #6339.
If
m1 := Matrix( Integers, [ [1,1], [0,1] ] );thenm1^2is calculated correctly.But if
m1 := Matrix( Rationals, [ [1,1], [0,1] ] );thenm1^2throws an error.