![]() |
Stan
2.5.0
probability, sampling & optimization
|
#include <vector>#include <sstream>#include <stdexcept>#include <stan/math/matrix/Eigen.hpp>#include <stan/math/error_handling/matrix/check_matching_sizes.hpp>#include <stan/math/error_handling/matrix/check_matching_dims.hpp>#include <iostream>Go to the source code of this file.
Namespaces | |
| stan | |
| Probability, optimization and sampling library. | |
| stan::math | |
| Matrices and templated mathematical functions. | |
Functions | |
| template<typename LHS , typename RHS > | |
| void | stan::math::assign (LHS &lhs, const RHS &rhs) |
| Copy the right-hand side's value to the left-hand side variable. More... | |
| template<typename LHS , typename RHS , int R1, int C1, int R2, int C2> | |
| void | stan::math::assign (Eigen::Matrix< LHS, R1, C1 > &x, const Eigen::Matrix< RHS, R2, C2 > &y) |
| Copy the right-hand side's value to the left-hand side variable. More... | |
| template<typename LHS , typename RHS , int R, int C> | |
| void | stan::math::assign (Eigen::Matrix< LHS, R, C > &x, const Eigen::Matrix< RHS, R, C > &y) |
| Copy the right-hand side's value to the left-hand side variable. More... | |
| template<typename LHS , typename RHS , int R, int C> | |
| void | stan::math::assign (Eigen::Block< LHS > x, const Eigen::Matrix< RHS, R, C > &y) |
| Copy the right-hand side's value to the left-hand side variable. More... | |
| template<typename LHS , typename RHS > | |
| void | stan::math::assign (std::vector< LHS > &x, const std::vector< RHS > &y) |
| Copy the right-hand side's value to the left-hand side variable. More... | |