Hi,
There is a bug in the SerializeComplexToDouble method:
for (int i = 0; i < data.Length; i++)
Should be:
for (int i = 0; i < values.Length; i++)
There is a bug in the SerializeComplexToDouble method:
for (int i = 0; i < data.Length; i++)
Should be:
for (int i = 0; i < values.Length; i++)