VectorDataExtensions.WriteDelimited Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 10.6.0

Overload List

WriteDelimited<T>(Vector<T>, Stream, DelimitedTextOptions)

C#
public static void WriteDelimited<T>(
	this Vector<T> vector,
	Stream stream,
	DelimitedTextOptions options
)

Parameters

vector  Vector<T>
 
stream  Stream
 
options  DelimitedTextOptions
 

Type Parameters

T

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

WriteDelimited<T>(Vector<T>, String, DelimitedTextOptions)

C#
public static void WriteDelimited<T>(
	this Vector<T> vector,
	string path,
	DelimitedTextOptions options
)

Parameters

vector  Vector<T>
 
path  String
 
options  DelimitedTextOptions
 

Type Parameters

T

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also