Return the result of applying lmultiply
to the arguments elementwise, with broadcasting if one of the arguments is a scalar.
Return the product a * log(b)
.
Return the elementwise product a * log(b)
.
At least one of the arguments must be a container.
- Template Parameters
-
T1 | type of the first argument |
T2 | type of the second argument |
- Parameters
-
a | first argument |
b | second argument |
- Returns
- result of applying
lmultiply
to the arguments
Both T1
and T2
are matrices, and one of T1
or T2
must be a var_value
- Template Parameters
-
T1 | Type of first argument |
T2 | Type of second argument |
- Parameters
-
a | First argument |
b | Second argument |
- Returns
- elementwise product of
a
and log(b)
- Template Parameters
-
T1 | Type of matrix argument |
T2 | Type of scalar argument |
- Parameters
-
a | Matrix argument |
b | Scalar argument |
- Returns
- Product of
a
and log(b)
- Template Parameters
-
T1 | Type of scalar argument |
T2 | Type of matrix argument |
- Parameters
-
a | Scalar argument |
b | Matrix argument |
- Returns
- Product of
a
and log(b)
Definition at line 46 of file lmultiply.hpp.