Description
Calling TDIFlyGB to calculate the waveform in time domain with default drop_points=0 will return an array filled with 0.
Reason
The 360th line of TDIFly.py
res[:, -self.drop_points:] = 0.
means
and thus causes all the items of the res equal to 0.
Is this an expected mechanism to force non-zero drop_points to be passed in?
Description
Calling TDIFlyGB to calculate the waveform in time domain with default
drop_points=0will return an array filled with 0.Reason
The 360th line of TDIFly.py
means
and thus causes all the items of the
resequal to 0.Is this an expected mechanism to force non-zero
drop_pointsto be passed in?