Mercurial > hg > js-dsp-test
changeset 35:c795fab4c4be
Merge
author | Chris Cannam |
---|---|
date | Tue, 10 Nov 2015 07:30:50 +0000 |
parents | afbb64027d79 (diff) bbf5d4e825eb (current diff) |
children | 6a99a85fd815 |
files | fft/index.html fft/native.cpp |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/fft/index.html Mon Nov 09 12:22:00 2015 +0000 +++ b/fft/index.html Tue Nov 10 07:30:50 2015 +0000 @@ -58,13 +58,12 @@ <h3>Notes</h3> <ul> - <li><b>Nayuki</b>: in-place single-precision complex-complex. Around 7kb.</li> + <li><b>Nayuki</b>: in-place double-precision (native JS number type) complex-complex. Around 7kb.</li> <li><b>Nayuki (obj)</b>: Nayuki with the sin/cos tables pre-calculated on object construction. Around 4kb.</li> <li><b>Nayuki (C)</b>: Nayuki C implementation compiled with Emscripten. Does not have pre-calculated sin/cos tables.</li> <li><b>Nockert</b>: double-precision real-complex. Around 25kb.</li> <li><b>Dntj</b>: double-precision complex-complex. Forward - transform is scaled and I've scaled it back again here, which may - introduce rounding error. Around 10kb.</li> + transform is scaled and I've scaled it back again here. Around 10kb.</li> <li><b>Cross</b>: double-precision real-complex in C, compiled with Emscripten. This is considered a slow implementation amongst native code ones. Around 60kb.</li>