Why is an E- float being returned when analysing sound

Hello
I’m analysing the sound spectrum data of an imported sound file.

As I loop through data I’m frequently getting numbers such as 5.4515745E-5 rather than a float from 0 to 1.

Why is this and how do ignore those numbers?

Thanks

1 Like

The E is a shorthand sometimes used for floats

5.4515745E-5 = 5.4515745 * 10^(-5) = 0.000054515745

1 Like

any math calc can produce small numbers…
but how numbers are shown depends on the “print way” and the “renderer”
( and not on the math… )

but you can change the look:

1 Like