I need to define a two dimensional array and assign values. I was wondering if there is an easier way in vb.net to do this other then how I have it below. some of my other arrays have over 700 elements in them.
Dim L1(8, 2) As Double
L1(0, 0) = 0
L1(1, 0) = 6.2170397
L1(2, 0) = 3.055655
L1(3, 0) = 6.10455
L1(4, 0) = 2.83532
L1(5, 0) = 5.8268
L1(6, 0) = 2.5185
L1(7, 0) = 5.48
L1(0, 1) = 3.052
L1(1, 1) = 2.149
L1(2, 1) = 6.12
L1(3, 1) = 0.0
L1(4, 1) = 5.62
L1(5, 1) = 4.57
L1(6, 1) = 3.04
L1(7, 1) = 5.09