DecodeDeltaSeriesXY

Qubes 9.0 Returns a list of numbers from a Delta encoded string entered as a parameter.

Syntax

DecodeDeltaSeriesXY(string)
string = The string which encapsulate the array you want to decode.

Remarks

string must be the result of an array of numerical values encoded by Delta.

Returns List() if string is empty or if encapsulated arrays are empty.

If string does not encapsulates an array of 2 arrays of integers only, there will be an error.

Examples

DecodeDeltaSeriesXY('[[0,1612535475,1,1],[0,52,-6,14]]') = List(1612535475,52,1612535476,46,1612535477,60)
DecodeDeltaSeriesXY('[[0,1,1,1,-1,-1,2],[2,4510,-4223,65,-152,-70,267]]') = List(1,45.1,2,2.87,3,3.52,2,2,1,1.3,3,3.97)
DecodeDeltaSeriesXY('[[],[]]') = List()
DecodeDeltaSeriesXY('') = List()

Classification

Ranges