diff options
author | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-04-17 17:59:08 +0200 |
---|---|---|
committer | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-04-17 17:59:08 +0200 |
commit | 87ae7dfcb35d9a55950eecc2116d13d73b2b9ece (patch) | |
tree | 090946c28eb7b9d3028844bf4e0dcc01ddb29664 /controller/fw/tools/cwt_wavelet_header_gen.py | |
parent | e505627adad7510673f983cd158016342aa1bdfc (diff) | |
download | master-thesis-87ae7dfcb35d9a55950eecc2116d13d73b2b9ece.tar.gz master-thesis-87ae7dfcb35d9a55950eecc2116d13d73b2b9ece.tar.bz2 master-thesis-87ae7dfcb35d9a55950eecc2116d13d73b2b9ece.zip |
fw simulator: WIP
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, |