Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I am wanting to create in F# a 2D array of size 1000x1000, with the value in the array at any position to be initialized as the same vaue of its index using the 2DArray class.

i.e. position [1,1] would have value (1,1).

I have looked at the syntaxt of Array2D.create, but am not sure how to use it properly...

Any help would be appreciated...

share|improve this question

1 Answer

up vote 10 down vote accepted

Use Array2D.init to pass a function to specify the initial value of each.

let a = Array2D.init 3 3 (fun x y -> (x,y))
printfn "%A" a
share|improve this answer
Thanks Brian... do u ever sleep? – Mark Pearl Jul 26 '10 at 15:05
9  
Only asynchronously. :) – Brian Jul 26 '10 at 15:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.