Three 1D Arrays to One 2D Array
- by Steven
I have a function which accepts a 2D array, but my data is in three 1D arrays.
How do I create a 2D array consisting of the three arrays to pass to the subroutine?
Dim Y0(32) As Double
Dim Y1(32) As Double
Dim Y2(32) As Double
'Code to fill arrays'
'Attempting to call:'
Sub PlotYMult(YData(,) as Double)