Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo #39

Merged
merged 1 commit into from
Jul 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/bsvars_sign.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ All notations in the C++ code except for compute.cpp and forecast_bsvarSIGNs.cpp
Rcpp::List bsvar_sign_cpp(
const int& S, // number of draws from the posterior
const int& p, // number of lags
const arma::mat& Y, // NxT dependent variables
const arma::mat& X, // KxT dependent variables
const arma::mat& Y, // TxN dependent variables
const arma::mat& X, // TxK dependent variables
const arma::field<arma::mat>& VB, // N-list
const arma::cube& sign_irf, // NxNxh cube of signs for impulse response function
const arma::mat& sign_narrative, // Mx6 matrix of signs for historical decomposition
const arma::mat& sign_B, // Mx6 matrix of signs for B
const arma::mat& sign_narrative, // ANYx6 matrix of signs for historical decomposition
const arma::mat& sign_B, // NxN matrix of signs for B
const arma::field<arma::mat>& Z, // a list of zero restrictions
const Rcpp::List& prior, // a list of priors
const Rcpp::List& starting_values, // a list of starting values
Expand Down
Loading