diff options
Diffstat (limited to 'controller/fw/tools/cwt_wavelet_header_gen.py')
-rw-r--r-- | controller/fw/tools/cwt_wavelet_header_gen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controller/fw/tools/cwt_wavelet_header_gen.py b/controller/fw/tools/cwt_wavelet_header_gen.py index e9713a7..8be785b 100644 --- a/controller/fw/tools/cwt_wavelet_header_gen.py +++ b/controller/fw/tools/cwt_wavelet_header_gen.py @@ -18,7 +18,7 @@ if __name__ == '__main__': print(f'const float {varname}[{args.n}] = {{') win = sig.ricker(args.n, args.w) - par = ' '.join(f'{f:>015.8g}f,' for f in win) + par = ' '.join(f'{f:>015.12e}f,' for f in win) print(textwrap.fill(par, initial_indent=' '*4, subsequent_indent=' '*4, width=120, |