MatrixElement
final class MatrixElement<Value>(y:Expression<Value[_,_]>, i:Integer, j:Integer) < ScalarExpression<Value>
Lazy access of a matrix element.
Factory Functions
Name | Description |
---|---|
MatrixElement | Lazy access of a matrix element. |
MatrixElement | Lazy access of a matrix element. |
MatrixElement | Lazy access of a matrix element. |
Member Variables
Name | Description |
---|---|
y:Expression<Value[_,_]>? | Argument. |
i:Integer | Row. |
j:Integer | Column. |
Factory Function Details
function MatrixElement(y:Expression<Real[_,_]>, i:Integer, j:Integer) -> MatrixElement<Real>
Lazy access of a matrix element.
function MatrixElement(y:Expression<Integer[_,_]>, i:Integer, j:Integer) -> MatrixElement<Integer>
Lazy access of a matrix element.
function MatrixElement(y:Expression<Boolean[_,_]>, i:Integer, j:Integer) -> MatrixElement<Boolean>
Lazy access of a matrix element.