Stan Math Library  2.20.0
reverse mode automatic differentiation
transpose.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_FUN_TRANSPOSE_HPP
2 #define STAN_MATH_PRIM_MAT_FUN_TRANSPOSE_HPP
3 
5 
6 namespace stan {
7 namespace math {
8 
9 template <typename T, int R, int C>
10 Eigen::Matrix<T, C, R> inline transpose(const Eigen::Matrix<T, R, C>& m) {
11  return m.transpose();
12 }
13 
14 } // namespace math
15 } // namespace stan
16 #endif
matrix_cl transpose(const matrix_cl &src)
Takes the transpose of the matrix on the OpenCL device.
Definition: transpose.hpp:20

     [ Stan Home Page ] © 2011–2018, Stan Development Team.