Writes a vector to a file in delimited text format.
Namespace:
Extreme.Data.Text
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static void Write<T>(
string path,
Vector<T> vector,
TextOptions options = null
)
Public Shared Sub Write(Of T) (
path As String,
vector As Vector(Of T),
Optional options As TextOptions = Nothing
)
public:
generic<typename T>
static void Write(
String^ path,
Vector<T>^ vector,
TextOptions^ options = nullptr
)
static member Write :
path : string *
vector : Vector<'T> *
?options : TextOptions
(* Defaults:
let _options = defaultArg options null
*)
-> unit
Parameters
- path
- Type: SystemString
The path to the file. - vector
- Type: Extreme.MathematicsVectorT
The vector to write to the file. - options (Optional)
- Type: Extreme.DataTextOptions
A TextOptions object
that specifies the options to use when reading the file.
Type Parameters
- T
- The element type of the vector.
Reference