From 7987f31745fc57646bf49d0c219d282ee3c38642 Mon Sep 17 00:00:00 2001 From: lohitv Date: Tue, 19 Apr 2022 21:41:11 -0400 Subject: [PATCH] corrected a typo in the file test_karhunen_loeve_2d.py --- tests/unit_tests/stochastic_process/test_karhunen_loeve_2d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/stochastic_process/test_karhunen_loeve_2d.py b/tests/unit_tests/stochastic_process/test_karhunen_loeve_2d.py index fec7aa48c..4c0e58859 100644 --- a/tests/unit_tests/stochastic_process/test_karhunen_loeve_2d.py +++ b/tests/unit_tests/stochastic_process/test_karhunen_loeve_2d.py @@ -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