私は 0 と 1 の Array2D を持っています:
let rnd = System.Random()
let a = Array2D.init n n (fun i j -> int(System.Math.Round(rnd.NextDouble() / index)) )
次のような「1」要素の数を計算する必要があります。
a |> Array.filter (fun x -> x == 1)
しかし、「a」はArray2D(Arrayではない)なので、Array2DをArrayに変換する標準的な方法があるかどうか疑問に思っていますか?