Skip to content

Commit cd006f1

Browse files
authored
Update multivariate.py
1 parent cdb899a commit cd006f1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pymc/distributions/multivariate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,6 @@ def rng_fn(cls, rng, alpha, mu, cov, size):
304304
delta = (1/ np.sqrt(1 + aCa)) * cov @ alpha
305305
cov_star = np.block([[np.ones(1), delta],
306306
[delta[:, None], cov]])
307-
sample_mu = np.concatenate((np.zeros_like(mu), np.zeros(1))
308307
mv_samples = multivariate_normal.rng_fn(rng=rng, mean=np.zeros(mu.eval().shape[0] + 1), cov=cov_star, size=size)
309308

310309
x0 = mv_samples[:, 0]

0 commit comments

Comments
 (0)