I am building a PyMC model in which I have a multidimensional Normal distributed parameter, as follows:
motor_betas = pm.Normal("motor_beta", mu=0, sigma=1/2, size=9)
These betas are later used in a linear regression model. I want to restrict the joint combinations of parameter values such that beta1 > beta2 > ... > beta9. How would I approach this with PyMC?
Thank you for giving your time to help me with this.