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