Skip to content

Commit

Permalink
corrected a typo in the file test_karhunen_loeve_2d.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lohitv96 committed Apr 20, 2022
1 parent 19c1434 commit 7987f31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# R(x_1, x_2, t_1, t_2) = exp(-(x_1 - x_2) ** 2 -(t_1 - t_2) ** 2)

KLE_Object = KarhunenLoeveExpansionTwoDimension(n_samples=n_samples, correlation_function=R,
time_interval=np.array([dt, dx]), thresholds=[4, 5], random_state=128)
time_intervals=np.array([dt, dx]), thresholds=[4, 5], random_state=128)
samples = KLE_Object.samples


Expand Down

0 comments on commit 7987f31

Please sign in to comment.