MatrixUnaryExpression
abstract class MatrixUnaryExpression<Argument, ArgumentValue, ArgumentGradient, Value>(y:Argument) < MatrixExpression<Value>
Matrix unary expression.
Argument
: Argument type. Should derive fromExpression<...>
.ArgumentValue
: Argument value type. This is the type to which the left argument evaluates.ArgumentGradient
: Argument upstream gradient type. This is the type of the upstream gradient that the argument accepts. It should beReal
,Real[_]
, orReal[_,_]
.Value
: The type to which the expression evaluates.
Member Variables
Name | Description |
---|---|
y:Argument? | Argument. |