Getting Run-time error '6': Overflow
Error is near the end of my code
looked up online and it looks like I need to use something bigger than a double (is there a data type that is bigger than a double in VB that allows for decimals?, I didn't really see one)
my other thought was that I might be going outside the bounds of the array, but I've looked over the code and I don't think that I am.
N is a const declared outside the code
I'm passing in a 2D double array as a()
and a vector array as l()
Sub Gauss(ByRef a() As Double, ByRef l() As Integer)
Dim s(1 To N) As Double
Dim r, rmax, smax, xmult As Double
Dim z As Integer
Dim intswap As Integer
For i = 1 To N
l(i) = i
smax = 0
For j = 1 To N
If Abs(a(i, j)) > smax Then smax = Abs(a(i, j))
Next j
s(i) = smax
Worksheets("smax").Cells(i, 1).Value = s(i)
Next i
For k = 1 To (N - 1)
rmax = 0
For i = k To N
r = Abs(a(l(i), k)) / s(l(i))
If r > rmax Then
rmax = r
z = i
End If
Next i
intswap = l(z)
l(z) = l(k)
l(k) = intswap
For i = (k + 1) To N
xmult = a(l(i), k) / s(l(i))
a(l(i), k) = xmult
For j = k + 1 To N
a(l(i), j) = a(l(i), j) - xmult * a(l(k), j) 'HERE IS WHERE I GET THE ERROR
Next j
Next i
Next k
End Sub
Error is near the end of my code
looked up online and it looks like I need to use something bigger than a double (is there a data type that is bigger than a double in VB that allows for decimals?, I didn't really see one)
my other thought was that I might be going outside the bounds of the array, but I've looked over the code and I don't think that I am.
N is a const declared outside the code
I'm passing in a 2D double array as a()
and a vector array as l()
Sub Gauss(ByRef a() As Double, ByRef l() As Integer)
Dim s(1 To N) As Double
Dim r, rmax, smax, xmult As Double
Dim z As Integer
Dim intswap As Integer
For i = 1 To N
l(i) = i
smax = 0
For j = 1 To N
If Abs(a(i, j)) > smax Then smax = Abs(a(i, j))
Next j
s(i) = smax
Worksheets("smax").Cells(i, 1).Value = s(i)
Next i
For k = 1 To (N - 1)
rmax = 0
For i = k To N
r = Abs(a(l(i), k)) / s(l(i))
If r > rmax Then
rmax = r
z = i
End If
Next i
intswap = l(z)
l(z) = l(k)
l(k) = intswap
For i = (k + 1) To N
xmult = a(l(i), k) / s(l(i))
a(l(i), k) = xmult
For j = k + 1 To N
a(l(i), j) = a(l(i), j) - xmult * a(l(k), j) 'HERE IS WHERE I GET THE ERROR
Next j
Next i
Next k
End Sub