![]() |
Stan
2.14.0
probability, sampling & optimization
|
Structure to hold a Cholesky factor variable declaration. More...
#include <cholesky_factor_var_decl.hpp>
Public Member Functions | |
cholesky_factor_var_decl () | |
Construct a Cholesky factor variable declaration with default values. More... | |
cholesky_factor_var_decl (const expression &M, const expression &N, const std::string &name, const std::vector< expression > &dims, const expression &def) | |
Construct a Cholesky factor variable declaration with the specified number of rows, number of columns, name, and number of array dimensions. More... | |
![]() | |
base_var_decl () | |
Construct a default base variable declaration. More... | |
base_var_decl (const base_expr_type &base_type) | |
Construct a base variable declaration of the specified type. More... | |
base_var_decl (const std::string &name, const std::vector< expression > &dims, const base_expr_type &base_type) | |
Construct a base variable declaration with the specified name, dimensions, and base type. More... | |
base_var_decl (const std::string &name, const std::vector< expression > &dims, const base_expr_type &base_type, const expression &def) | |
Construct a base variable declaration with the specified name, dimensions, base type, and definition. More... | |
Public Attributes | |
expression | M_ |
Number of rows. More... | |
expression | N_ |
Number of columns. More... | |
![]() | |
std::string | name_ |
Name of the variable. More... | |
std::vector< expression > | dims_ |
Dimension sizes for variable. More... | |
base_expr_type | base_type_ |
Base type for variable. More... | |
expression | def_ |
Definition for variable (nil if undefined). More... | |
Structure to hold a Cholesky factor variable declaration.
Definition at line 15 of file cholesky_factor_var_decl.hpp.
stan::lang::cholesky_factor_var_decl::cholesky_factor_var_decl | ( | ) |
Construct a Cholesky factor variable declaration with default values.
Definition at line 11 of file cholesky_factor_var_decl_def.hpp.
stan::lang::cholesky_factor_var_decl::cholesky_factor_var_decl | ( | const expression & | M, |
const expression & | N, | ||
const std::string & | name, | ||
const std::vector< expression > & | dims, | ||
const expression & | def | ||
) |
Construct a Cholesky factor variable declaration with the specified number of rows, number of columns, name, and number of array dimensions.
M | number of rows |
N | number of columns |
name | variable name |
dims | array dimension sizes |
def | defition of variable |
Definition at line 14 of file cholesky_factor_var_decl_def.hpp.
expression stan::lang::cholesky_factor_var_decl::M_ |
Number of rows.
Definition at line 19 of file cholesky_factor_var_decl.hpp.
expression stan::lang::cholesky_factor_var_decl::N_ |
Number of columns.
Definition at line 24 of file cholesky_factor_var_decl.hpp.