You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
382 B

Imports GridDynamics_plugins
Imports Microsoft.VisualBasic.Linq
Imports Microsoft.VisualBasic.Math.LinearAlgebra
Module Module1
Sub Main()
Dim vec As Vector = 50000.Sequence.Select(Function(i) CDbl(i)).AsVector
Dim filePath$ = "./test.dat"
Using file = filePath.Open
Call vec.Serialize(file)
End Using
End Sub
End Module