Enables the vectorized application of the multiply_log function, when the first and/or second arguments are containers.
Return the product a * log(b)
.
Return the elementwise product a * log(b)
.
- Template Parameters
-
T1 | type of first input |
T2 | type of second input |
- Parameters
-
a | First input |
b | Second input |
- Returns
- multiply_log function applied to the two inputs.
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 70 of file multiply_log.hpp.