TextDataStream.Write Method

Definition

Namespace: Extreme.Data
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<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<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.

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

Writes a complex matrix to the stream.
C#
public abstract 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.

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

Writes a complex vector to the stream.
C#
public abstract 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