Skip to content
Snippets Groups Projects
Commit 308fd61a authored by Leo Tsukada's avatar Leo Tsukada
Browse files

fix the numpy.linspace argement

parent 7e2036df
No related branches found
No related tags found
No related merge requests found
Pipeline #258659 passed
......@@ -366,7 +366,7 @@ def time_slices(
def hplus_of_f(m1, m2, s1, s2, f_min, f_max, delta_f):
farr = numpy.linspace(0, f_max, f_max / delta_f + delta_f)
farr = numpy.linspace(0, f_max, int(f_max / delta_f + 1))
spin1 = [0., 0., s1]; spin2 = [0., 0., s2]
hp, hc = lalsim.SimInspiralFD(
m1 * lal.MSUN_SI, m2 * lal.MSUN_SI,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment