https://github.com/cran/GAS
Raw File
Tip revision: 4553011d1e8e2444581a5d50a8936c9b05603eb4 authored by Leopoldo Catania on 23 August 2016, 14:57:49 UTC
version 0.1.2
Tip revision: 4553011
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::vec 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);
#endif
back to top