Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | add log transform option |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | master |
Files: | files | file ages | folders |
SHA3-256: |
17f3ce2f1e4ee55d233691a085c87151 |
User & Date: | jesse.mcclure@umassmed.edu 2016-05-18 14:00:49 |
Context
2017-08-17
| ||
14:31 | Cleaning up for new python version check-in: 42a96c2c60 user: jmcclure tags: trunk, master | |
2016-05-18
| ||
14:00 | add log transform option check-in: 17f3ce2f1e user: jesse.mcclure@umassmed.edu tags: trunk, master | |
2016-02-10
| ||
19:14 | added logFreq option to log transform frequencies - I advise *against* using this option check-in: 4fd5b5e5b0 user: jesse.mcclure@umassmed.edu tags: trunk, master | |
Changes
Changes to share/config.
︙ | |||
35 36 37 38 39 40 41 | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | - - - + + + - - + | set samples = 256 set bandpass = 1.25 10.0 set scale = 8 set window = hanning set fontFamily = droid sans set fontSize = 14 set help = xterm -e man fex-help |
︙ |
Changes to src/spectro.c.
︙ | |||
142 143 144 145 146 147 148 | 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | - - + - - + | if (spect->fft->mask[i][j]) continue; if (spect->fft->amp[i][j] > spect->fft->amp[i][f] || !f) f = j; } /* add points and do calculations if f is above threshold */ if (f > 0 && spect->fft->amp[i][f] > conf.thresh) { if (lt != spect->fft->time[0]) { |
︙ |