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