We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
In code intro.py actual noise propagation,
T[:, k] = Gamma.bmm(Phi).bmm(T_k).bmm(tmp2)
where T_k is the exponential mapped generated multivariate Gaussian noise using the Cholesky decomposition of the covariance matrix.
T_k
I am wondering why multiplication is not at the end of the equation as followed
T[:, k] = Gamma.bmm(Phi).bmm(tmp2).bmm(T_k)
Based on the equation (44) in paper
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
In code intro.py actual noise propagation,
T[:, k] = Gamma.bmm(Phi).bmm(T_k).bmm(tmp2)
where
T_k
is the exponential mapped generated multivariate Gaussian noise using the Cholesky decomposition of the covariance matrix.I am wondering why multiplication is not at the end of the equation as followed
T[:, k] = Gamma.bmm(Phi).bmm(tmp2).bmm(T_k)
Based on the equation (44) in paper
Thanks!
The text was updated successfully, but these errors were encountered: