SignalToSeries (FPScript)
Transforms a signal into a signal series or a data series in a data matrix whose number of columns corresponds to the number of values in the data set.
Syntax
SignalToSeries(DataSet)
The syntax of the SignalToSeries function consists of the following parts:
Part |
Description |
---|---|
DataSet |
The signal or data series to be transformed. Permitted data structures are data series und signal. All data types are permitted. |
Remarks
The function is ideal, for instance, for displaying the values of a signal as separate curves in a diagram.
If the argument is a list, then the function is executed for each element of the list and the result is also a list.
Available in
FlexPro View, Basic, Professional, Developer Suite
Examples
SignalToSeries(Signal({1, 2 ,3}, 1)) |
Results in Signal({{1}, {2}, {3}}, {{0}, {1}, {2}}). Transforms a signal with three values into a signal series with 3 signals, each with one value. |