Class Result.MatrixResult
Represents the matrix result.
public sealed class Result.MatrixResult : Result
- Inheritance
-
Result.MatrixResult
- Inherited Members
Constructors
MatrixResult(MatrixValue)
Initializes a new instance of the Result.MatrixResult class.
public MatrixResult(MatrixValue matrix)
Parameters
matrix
MatrixValueThe matrix value.
Properties
Matrix
Gets the matrix value.
public override MatrixValue Matrix { get; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.
Operators
implicit operator MatrixValue(MatrixResult)
Converts Result.MatrixResult to MatrixValue.
public static implicit operator MatrixValue(Result.MatrixResult matrixResult)
Parameters
matrixResult
Result.MatrixResultThe matrix result.
Returns
- MatrixValue
The matrix value.