overflow
Posted: Thu Aug 02, 2018 2:00 am
Hi,
how do I deal with an overflow message, please?
I am trying to fill in a matrix with the following:
matrix(16,10) vev
scalar sca=1
for !i=1 to 16
vev(!i, 1)=sca
scalar sca = sca+1
next
for !i=1 to @rows(vev)
for !j=2 to @columns(vev)
vev(!i,!j)=vev(!i,!j-1)^2
next
next
but can not get past vev(4,10)?
setting maxerrors to 10 000 didnt help.
Any leads on what am I doing wrong?
how do I deal with an overflow message, please?
I am trying to fill in a matrix with the following:
matrix(16,10) vev
scalar sca=1
for !i=1 to 16
vev(!i, 1)=sca
scalar sca = sca+1
next
for !i=1 to @rows(vev)
for !j=2 to @columns(vev)
vev(!i,!j)=vev(!i,!j-1)^2
next
next
but can not get past vev(4,10)?
setting maxerrors to 10 000 didnt help.
Any leads on what am I doing wrong?