VectorDataExtensions.WriteComplexMatrixMarket Method

Definition

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

Overload List

WriteComplexMatrixMarket<T>(Vector<Complex<T>>, Stream, TextOptions)

C#
public static void WriteComplexMatrixMarket<T>(
	this Vector<Complex<T>> vector,
	Stream stream,
	TextOptions options = null
)

Parameters

vector  Vector<Complex<T>>
 
stream  Stream
 
options  TextOptions  (Optional)
 

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<Complex<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).

WriteComplexMatrixMarket<T>(Vector<Complex<T>>, String, TextOptions)

C#
public static void WriteComplexMatrixMarket<T>(
	this Vector<Complex<T>> vector,
	string path,
	TextOptions options = null
)

Parameters

vector  Vector<Complex<T>>
 
path  String
 
options  TextOptions  (Optional)
 

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<Complex<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