Revision 861e89ec0411283af27d71b3006f91451077675b authored by Brian Ward on 21 October 2021, 12:37:00 UTC, committed by GitHub on 21 October 2021, 12:37:00 UTC
2 parent s 885bd18 + 8c85b1c
Raw File
binormal.stan
transformed data {
    matrix[2,2] Sigma = [[1, 0.1],
                         [0.1, 1]];
    vector[2] mu = [0, 0]';
}
parameters {
    vector[2] y;
}
model {
      y ~ multi_normal(mu, Sigma);
}
back to top