MatrixDataExtensions.WriteComplexCsv Method

Definition

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

Overload List

WriteComplexCsv<T>(Matrix<Complex<T>>, Stream, DelimitedTextOptions)

C#
public static void WriteComplexCsv<T>(
	this Matrix<Complex<T>> matrix,
	Stream stream,
	DelimitedTextOptions options = null
)

Parameters

matrix  Matrix<Complex<T>>
 
stream  Stream
 
options  DelimitedTextOptions  (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<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).

WriteComplexCsv<T>(Matrix<Complex<T>>, String, DelimitedTextOptions)

C#
public static void WriteComplexCsv<T>(
	this Matrix<Complex<T>> matrix,
	string path,
	DelimitedTextOptions options = null
)

Parameters

matrix  Matrix<Complex<T>>
 
path  String
 
options  DelimitedTextOptions  (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<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