Return the elementwise product a * log(b)
.
Return the product a * log(b)
.
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 104 of file lmultiply.hpp.