Reads a matrix from the specified file.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Matrix<T> ReadMatrix<T>(
Stream stream
)
Public Shared Function ReadMatrix(Of T) (
stream As Stream
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ ReadMatrix(
Stream^ stream
)
static member ReadMatrix :
stream : Stream -> Matrix<'T>
Parameters
- stream
- Type: System.IOStream
The stream to read from.
Type Parameters
- T
Return Value
Type:
MatrixTThe matrix that was read from the stream.
Reference