Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Prateek Bhustali committed Jul 3, 2022
1 parent 7da93b1 commit 08d9180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/code/sensitivity/chatterjee/local_sobol_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def sensitivities(a_values):

Total_order = np.zeros((dims, 1))

V_i = (3 * (1 + a_values) ** 2) ** (-1)
V_i = 1 / (3 * (1 + a_values) ** 2)

total_variance = np.prod(1 + V_i) - 1

Expand Down

0 comments on commit 08d9180

Please sign in to comment.