DelimitedTextStream.Write Method

Definition

Namespace: Extreme.Data.Text
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0

Overload List

Write<T>(Matrix<T>) Writes the two-dimensional array at the current position in the file.
Write<T>(Matrix<T>) Writes the two-dimensional array at the current position in the file.
Write<T>(Matrix<Complex<T>>) Writes a complex matrix to the stream.
Write<T>(Matrix<Complex<T>>) Writes a complex matrix to the stream.
Write<T>(Vector<T>) Writes the one-dimensional array at the current position in the file.
Write<T>(Vector<T>) Writes the one-dimensional array at the current position in the file.
Write<T>(Vector<Complex<T>>) Writes a complex vector to the stream.
Write<T>(Vector<Complex<T>>) Writes a complex vector to the stream.
Write<R, C>(DataFrame<R, C>) Writes the data frame at the current position in the file.
Write<R, C>(DataFrame<R, C>) Writes the data frame at the current position in the file.

DelimitedTextStream.Write<R, C>(DataFrame<R, C>)

Writes the data frame at the current position in the file.
C#
public override void Write<R, C>(
	DataFrame<R, C> dataFrame
)

Parameters

dataFrame  DataFrame<R, C>
 

Type Parameters

R
The type of the row keys of the data frame.
C
The type of the column keys of the data frame.

DelimitedTextStream.Write<T>(Matrix<T>)

Writes the two-dimensional array at the current position in the file.
C#
public override void Write<T>(
	Matrix<T> matrix
)

Parameters

matrix  Matrix<T>
 

Type Parameters

T
The element type of the matrix.

DelimitedTextStream.Write<T>(Matrix<Complex<T>>)

Writes a complex matrix to the stream.
C#
public override void Write<T>(
	Matrix<Complex<T>> matrix
)

Parameters

matrix  Matrix<Complex<T>>
 

Type Parameters

T
The type of the real and imaginary parts of the element type.

DelimitedTextStream.Write<T>(Vector<T>)

Writes the one-dimensional array at the current position in the file.
C#
public override void Write<T>(
	Vector<T> vector
)

Parameters

vector  Vector<T>
 

Type Parameters

T
The element type of the vector.

DelimitedTextStream.Write<T>(Vector<Complex<T>>)

Writes a complex vector to the stream.
C#
public override void Write<T>(
	Vector<Complex<T>> vector
)

Parameters

vector  Vector<Complex<T>>
 

Type Parameters

T
The type of the real and imaginary parts of the element type.

See Also