Json File.Read Complex Matrix Method
Definition
Namespace: Extreme.Data.Json
Assembly: Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.1
Assembly: Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.1
Overload List
Read | Reads a complex matrix from a stream in JSON format. |
Read | Reads a complex matrix from a file in JSON format. |
ReadComplexMatrix<T>(Stream, JsonOptions)
Reads a complex matrix from a stream in JSON format.
public static Matrix<Complex<T>> ReadComplexMatrix<T>(
Stream stream,
JsonOptions options = null
)
Parameters
- stream Stream
- A stream.
- options JsonOptions (Optional)
- A JsonOptions object that specifies the options to use when reading the file.
Type Parameters
- T
- The element type of the matrix.
Return Value
Matrix<Complex<T>>The matrix that was read from the stream pointed to by stream.
Remarks
The element type of the stored matrix does not have to match the element type of the returned matrix. However, casting values from this type to type T must succeed.
ReadComplexMatrix<T>(String, JsonOptions)
Reads a complex matrix from a file in JSON format.
public static Matrix<Complex<T>> ReadComplexMatrix<T>(
string path,
JsonOptions options = null
)
Parameters
- path String
- The path to the file.
- options JsonOptions (Optional)
- A JsonOptions object that specifies the options to use when reading the file.
Type Parameters
- T
- The element type of the matrix.
Return Value
Matrix<Complex<T>>The data frame that was read from the file pointed to by path.
Remarks
The element type of the stored matrix does not have to match the element type of the returned matrix. However, casting values from this type to type T must succeed.
Exceptions
File | The specified file does not exist. |