Three 1D Arrays to One 2D Array
Posted
by Steven
on Stack Overflow
See other posts from Stack Overflow
or by Steven
Published on 2010-04-22T14:29:55Z
Indexed on
2010/04/22
14:33 UTC
Read the original article
Hit count: 163
vb.net
|multidimensional-array
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)
© Stack Overflow or respective owner