Skip to content
Snippets Groups Projects
Commit 675b8a9b authored by Moritz's avatar Moritz
Browse files

Does no longer reset the frequency array when running in the time domain

parent c07845e4
No related branches found
No related tags found
1 merge request!279Restructre time frequency tests and fixing some recently surfaced bugs when using time domain models
Pipeline #38626 failed
......@@ -167,7 +167,7 @@ class WaveformGenerator(object):
model_strain = dict()
for key in transformed_model_strain:
if transformation_function == utils.nfft:
model_strain[key], self.frequency_array = \
model_strain[key], _ = \
transformation_function(transformed_model_strain[key], self.sampling_frequency)
else:
model_strain[key] = transformation_function(transformed_model_strain[key], self.sampling_frequency)
......
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