Module:
sdynpy.doc.sdynpy_vibration_testSource: GitHub
Signature¶
def sdynpy.doc.sdynpy_vibration_test.response_outside_mask(response, response_limit, mask_type: str = 'above')Compute a boolean mask of where response is outside the specified limit.
Parameters¶
response : NDDataArray The measured response data array.
response_limit : NDDataArray The limit data array to compare against.
mask_type : str, optional Direction of comparison: ‘above’ to flag where response exceeds the limit, ‘below’ to flag where response falls below the limit. Default is ‘above’.
Returns¶
np.ndarray
Boolean array that is True where the response is outside the limit.
Raises¶
ValueError
If mask_type is not ‘above’ or ‘below’.