MatrixDataExtensions.WriteRData Method

Definition

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

Overload List

WriteRData<T>(Matrix<T>, Stream, String, Boolean, Boolean)

C#
public static void WriteRData<T>(
	this Matrix<T> matrix,
	Stream stream,
	string name = "matrix",
	bool compress = true,
	bool ascii = false
)

Parameters

matrix  Matrix<T>
 
stream  Stream
 
name  String  (Optional)
 
compress  Boolean  (Optional)
 
ascii  Boolean  (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).

WriteRData<T>(Matrix<T>, String, String, Boolean, Boolean)

C#
public static void WriteRData<T>(
	this Matrix<T> matrix,
	string path,
	string name = "matrix",
	bool compress = true,
	bool ascii = false
)

Parameters

matrix  Matrix<T>
 
path  String
 
name  String  (Optional)
 
compress  Boolean  (Optional)
 
ascii  Boolean  (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