MatrixBinaryExpression
abstract class MatrixBinaryExpression<Left, Right, LeftValue, RightValue, LeftGradient, RightGradient, Value>(y:Left, z:Right) < MatrixExpression<Value>
Matrix binary expression.
Left
: Left argument type. Should derive fromExpression<...>
.Right
: Right argument type. Should derive fromExpression<...>
.LeftValue
: Left value type. This is the type to which the left argument evaluates.RightValue
: Right value type. This is the type to which the right argument evaluates.LeftGradient
: Left upstream gradient type. This is the type of the upstream gradient that the left argument accepts. It should beReal
,Real[_]
, orReal[_,_]
.RightGradient
: Right upstrem gradient type. This is the type of the upstream gradient that the right argument accepts. It should beReal
,Real[_]
, orReal[_,_]
.Value
: The type to which the expression evaluates.
Member Variables
Name | Description |
---|---|
y:Left? | Left argument. |
z:Right? | Right argument. |