User:Contribution/Chanofreq Project: Difference between revisions
Contribution (talk | contribs) |
Contribution (talk | contribs) |
||
| Line 63: | Line 63: | ||
=== Bitfreq, Minfreq and Maxfreq settings === | === Bitfreq, Minfreq and Maxfreq settings === | ||
By default, the parameters are set to: | By default, the parameters are set to: minfreq = 0 Hz, maxfreq = 21474.83648 Hz, and bitfreq = 32-bit. | ||
With these default settings, Z has a precision of five decimal places with an additional sixth decimal place that must be either 0 or 5. This configuration is optimized for compatibility with the human hearing range and 32-bit hardware and software systems, while minimizing phase errors across all frequencies. In the worst-case scenario, 1 phase error would occur approximately once every 4.6 days. These default settings are suitable for most applications, but there is flexibility to modify '''minfreq''' and '''maxfreq''', and to use smaller or larger integer data types with '''bitfreq''' as needed. | With these default settings, Z has a precision of five decimal places with an additional sixth decimal place that must be either 0 or 5. This configuration is optimized for compatibility with the human hearing range and 32-bit hardware and software systems, while minimizing phase errors across all frequencies. In the worst-case scenario, 1 phase error would occur approximately once every 4.6 days. These default settings are suitable for most applications, but there is flexibility to modify '''minfreq''' and '''maxfreq''', and to use smaller or larger integer data types with '''bitfreq''' as needed. | ||
| Line 74: | Line 74: | ||
For changing or reverting for multiple settings at once, use a comma-separated list: | For changing or reverting for multiple settings at once, use a comma-separated list: | ||
@set | @set minfreq: your_custom_minfreq, maxfreq: your_custom_maxfreq, bitfreq: your_custom_bitfreq | ||
@unset | @unset minfreq, maxfreq, bitfreq | ||
Practical example of custom | Practical example of custom settings: | ||
@set bitfreq: 64, minfreq: 0, maxfreq: 18446.744073709551616 | @set bitfreq: 64, minfreq: 0, maxfreq: 18446.744073709551616 | ||