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
When multiplying 2 matrices with large integer values the following error was observed. Please note that no warning or error message was received. This is running in Eclipse Version: 3.4.1 Build id: M20080911-1700. Pydev v 1.4.6.2788.
version 1.3.0rc2
gm1 :
[[ 0 1]
[ 1 -157249]]
Original ticket http://projects.scipy.org/numpy/ticket/1469 on 2010-04-30 by trac user gtpitt, assigned to unknown.
When multiplying 2 matrices with large integer values the following error was observed. Please note that no warning or error message was received. This is running in Eclipse Version: 3.4.1 Build id: M20080911-1700. Pydev v 1.4.6.2788.
version 1.3.0rc2
gm1 :
[[ 0 1]
[ 1 -157249]]
gm2 :
[[ 8762 -28349]
[-54857 177487]]
gm = dot(gm2,gm1) (note the order, gm2 is first)
[[ -28349 162893367]
[ 177487 -2139904344]]
correct answer :
[[ -28349 4457860663]
[ 177487 -27909708120]]
4457860663 (34 bits) :
100001001101101011000111000110111
The text was updated successfully, but these errors were encountered: