The values are rounded to 5 decimal places.
If my maths is correct, to represent normalized signed 24-bit numbers accurate to the least significant bit, you will need 9 decimal places.
For greater precision:
- Find the “sample-data-export.ny” file.
- Make a backup copy of the file somewhere convenient.
- Open “sample-data-export.ny” in a plain text editor (such as NotePad++)
- Find the line:
(setq *float-format* "%1.5f") ; 5 decimal places
- For 9 decimal places, change that to:
(setq *float-format* "%1.9f") ; 9 decimal places
Note that for real-world recordings, anything beyond about 5 decimal places is likely to be just random noise.