https://github.com/cran/GAS
Raw File
Tip revision: e588e3a10bf22cb7dff4a49a848baac63d743c3f authored by Leopoldo Catania on 04 February 2022, 09:30:12 UTC
version 0.3.4
Tip revision: e588e3a
Mapping.h
#ifndef MAPPING_H
#define MAPPING_H
arma::vec MapParameters_univ(arma::vec vTheta_tilde, std::string Dist, int iK);
arma::vec UnmapParameters_univ(arma::vec vTheta, std::string Dist, int iK);
arma::vec UnmapParameters_multi(arma::vec vTheta, std::string Dist,int iN, int iK);
arma::vec MapParameters_multi(arma::vec vTheta_tilde, std::string Dist,int iN, int iK);
arma::mat MapParametersJacobian_univ(arma::vec vTheta_tilde, std::string Dist, int iK);
arma::mat MapParametersJacobian_multi(arma::vec vTheta_tilde, std::string Dist, int iN, int iK);
arma::mat MapR_C(arma::vec vPhi, int iN);
arma::vec UnMapR_C(arma::vec vRho, int iN);
#endif
back to top