Automatic Differentiation
 
Loading...
Searching...
No Matches

◆ operator/=() [1/2]

template<typename T >
var_value< T > & stan::math::var_value< T, require_floating_point_t< T > >::operator/= ( const var_value< T > &  b)
inline

The compound divide/assignment operator for variables (C++).

If this variable is a and the argument is the variable b, then (a /= b) behaves exactly the same way as (a = a / b). Note that the result is an assignable lvalue.

Parameters
bThe variable to divide this variable by.
Returns
The result of dividing this variable by the specified variable.

Definition at line 11 of file operator_divide_equal.hpp.