Skip to content

Commit 2793edf

Browse files
Update contents/cooley_tukey/code/clisp/fft.lisp
Co-authored-by: Trashtalk217 <trashtalk217@gmail.com>
1 parent 9d0a5bb commit 2793edf

File tree

1 file changed

+1
-1
lines changed
  • contents/cooley_tukey/code/clisp

1 file changed

+1
-1
lines changed

contents/cooley_tukey/code/clisp/fft.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
;; Calculate coefficients for the odd indices.
1818
(twiddle-factors (loop for i from 0 below (length odds)
1919
collect (coefficient 1.0 i fft-length)))
20-
;; Multiply values with coefficients
20+
;; Multiply values with coefficients.
2121
(odd-terms (mapcar #'* odds twiddle-factors)))
2222
;; Combine the two FFTs
2323
(concatenate 'list

0 commit comments

Comments
 (0)