-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
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
Joining input dist and qoi_dist #44
Comments
I have looked closer at the code for QoI distribution, and the current implementation uses a sampling scheme to be able to create the distribution. This makes it very difficult to add the proper dependency structure that you are looking for through QoI. But if all you need is the co-variance between P and U_hat should be straight forward manually for each polynomial in
|
Oh, and you can can add that co-variance dependency structure into the joint. E.g.:
|
Thanks for the instructive comments. I am still a little confused. Now, |
You should easily be able to generalize upon this using a for-loop or two. |
Oh, I see! I found this conversation very useful. Thanks for your quick response and follow up! |
I consider this matter as closed. |
Hi,
I want to make contours of QoI-distribution versus input-distribution after obtaining QoI-distribution using PCM. I am using
cp.J(dist, qoi_dist)
to join the distributions and make multivariate distribution. However, it seems cp.J does not properly create co-variance matrix between two distributions (I believeqoi_dist
should be a dependent distribution with respect to inputdist
). Is there an easy way to obtain the joined distributions co-variance matrix usingU_hat
andP
?I have copied the relevant part of my code here:
Thanks,
Payam
The text was updated successfully, but these errors were encountered: