An example of a RatatoskCalculator component, which takes an input signal called SinNumber
, calculates the arcsine of the each value and outputs it as AsinNumber
.
Options:
PeriodMs: 1000
Constants:
InputSignals:
- { Type: DoubleVal, Topic: SinNumber, Partition: }
OutputSignals:
- { Type: DoubleVal, Topic: AsinNumber, Partition: }
TempValues:
Expressions:
- AsinNumber.val = asin(SinNumber.val)