是否可以在F#中对Array2D进行切片?说, let tmp =Array2D.init 100 100 (fun x y -> x * 100 + y)
let tmp =Array2D.init 100 100 (fun x y -> x * 100 + y)
如何检索一些列或tmp类似的行tmp.[0,1..]?
tmp
tmp.[0,1..]
f#
f# ×1