Signal transformation step.
%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://weldx.bam.de/schemas/weldx/measurement/data_transformation-1.0.0" tag: "tag:weldx.bam.de:weldx/measurement/data_transformation-1.0.0" title: | Signal transformation step. description: | Describes the transformation between an input and output signal. Optionally describes the associated error of the transformation step and the mathematical formula. type: object properties: name: type: string input_signal: $ref: "tag:weldx.bam.de:weldx/measurement/signal-1.0.0" output_signal: $ref: "tag:weldx.bam.de:weldx/measurement/signal-1.0.0" error: $ref: "tag:weldx.bam.de:weldx/measurement/error-1.0.0" func: $ref: "tag:weldx.bam.de:weldx/core/mathematical_expression-1.0.0" meta: type: object required: [name, input_signal, output_signal] propertyOrder: [name, input_signal, output_signal, error, func] flowStyle: block additionalProperties: false ...