MatrixDataExtensions.WriteMatrixMarket Method

Definition

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

Overload List

WriteMatrixMarket<T>(Matrix<T>, Stream, TextOptions)

C#
public static void WriteMatrixMarket<T>(
	this Matrix<T> matrix,
	Stream stream,
	TextOptions options = null
)

Parameters

matrix  Matrix<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 Matrix<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).

WriteMatrixMarket<T>(Matrix<T>, String, TextOptions)

C#
public static void WriteMatrixMarket<T>(
	this Matrix<T> matrix,
	string path,
	TextOptions options = null
)

Parameters

matrix  Matrix<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 Matrix<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