The Hilbert Transform crashes the program in the release version
The array of random numbers created on line 541 in runs.py creates a 2-dimensional array with one empty dimension.
A potential fix is to change to a standard one-dimensional array
theta_0 = 10**(6 * np.random.rand(3) - 3)
Best Regards,
Derek Johnson
The Hilbert Transform crashes the program in the release version
The array of random numbers created on line 541 in runs.py creates a 2-dimensional array with one empty dimension.
A potential fix is to change to a standard one-dimensional array
theta_0 = 10**(6 * np.random.rand(3) - 3)
Best Regards,
Derek Johnson