Stan Math Library
5.0.0
Automatic Differentiation
|
This template metaprogram is used to compute the return type for append_array.
If both types are Eigen::Matrices with the same Row/Column specification, then the type member is another Eigen::Matrix with the same Row/Column specification and a scalar type promoted using return_type
. Part of return type promotion logic for append_array
T1 | Scalar type of first matrix argument |
T2 | Scalar type of first matrix argument |
R | Eigen RowsAtCompileTime of both matrices |
C | Eigen ColsAtCompileTime of both matrices |
Definition at line 55 of file append_return_type.hpp.
#include <append_return_type.hpp>
Public Types | |
using | type = typename Eigen::Matrix< return_type_t< T1, T2 >, R, C > |