Abs

class of dascore.proc.basic
inherits from: PatchProcessor, DascoreBaseModel, pydantic.main.BaseModel
source

Abs(
    *args ,
)-> None

Take the absolute value of the patch data.

Examples

import dascore # import dascore library
pa = dascore.get_example_patch() # generate example patch
out = pa.abs() # take absolute value of generated example patch data

Methods

Name Description
check Refuse a patch which does not carry what the operation needs.
get_metadata Return the result’s metadata and the arguments kernel needs.
kernel Return the magnitude of every sample.
model_copy Copy the model, dropping cached values the update invalidates.
new Create new instance with some attributed updated.
abs Take the absolute value of the patch data.
reconcile Return the result’s metadata once the data are known; default as is.
run Run the operation: check, get_metadata, kernel, reconcile, record.