Fixed Width Text Stream.Write Method
Definition
Namespace: Extreme.Data.Text
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
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. |
Write<R, C>(DataFrame<R, C>)
Writes the data frame at the current position in the file.
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.
Write<T>(Matrix<T>)
Writes the two-dimensional array at the current position in the file.
public override void Write<T>(
Matrix<T> matrix
)
Parameters
- matrix Matrix<T>
Type Parameters
- T
- The element type of the matrix.
Write<T>(Matrix<Complex<T>>)
Writes a complex matrix to the stream.
public override void Write<T>(
Matrix<Complex<T>> matrix
)
Parameters
Type Parameters
- T
- The type of the real and imaginary parts of the element type.
Write<T>(Vector<T>)
Writes the one-dimensional array at the current position in the file.
public override void Write<T>(
Vector<T> vector
)
Parameters
- vector Vector<T>
Type Parameters
- T
- The element type of the vector.
Write<T>(Vector<Complex<T>>)
Writes a complex vector to the stream.
public override void Write<T>(
Vector<Complex<T>> vector
)
Parameters
Type Parameters
- T
- The type of the real and imaginary parts of the element type.