2017-05-15 05:39:11 +08:00
|
|
|
#!/bin/bash
|
|
|
|
sox -r 48k -t f32 -c 2 /s/costas_nco -t wav -e floating-point /s/costas_nco.wav
|
|
|
|
sox -r 48k -t f32 -c 1 /s/costas_error -t wav -e floating-point /s/costas_error.wav
|
2017-05-16 23:02:55 +08:00
|
|
|
sox -r 48k -t f32 -c 1 /s/costas_dphase -t wav -e floating-point --norm=-6 /s/costas_dphase.wav
|
2017-05-15 05:39:11 +08:00
|
|
|
sox -r 48k -t f32 -c 2 /s/costas_input -t wav -e floating-point /s/costas_input.wav
|
|
|
|
sox -r 48k -t f32 -c 2 /s/costas_output -t wav -e floating-point /s/costas_output.wav
|
2017-05-19 05:43:40 +08:00
|
|
|
sox -r 48k -t f32 -c 2 /s/tr_input -t wav -e floating-point /s/tr_input.wav
|
2017-05-16 23:02:55 +08:00
|
|
|
ls -al /s/costas_nco.wav /s/costas_error.wav /s/costas_dphase.wav /s/costas_output.wav /s/costas_input.wav
|
2017-05-15 05:39:11 +08:00
|
|
|
|
|
|
|
|