View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
johnmasvou johnmasvou is offline
external usenet poster
 
Posts: 9
Default Issue with arrays

I have two functions.

Function A should return a matrix array (mxm) and at some point it calls
function B which has one agrument, a vector array (1xm). The output of
function B should be a vector array (1xm).

Using (probably) a loop, how can I assign each time the output of B as one
row on the matrix of function A?

Something like A(i,)=B(Zi) would work in other languages but what about in VB?

thx