Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/ffts_trig.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* For more information on algorithms:
*
* D. Potts, G. Steidl, M. Tasche, Numerical stability of fast
* trigonometric transforms a worst case study,
* J. Concrete Appl. Math. 1 (2003) 136
* trigonometric transforms a worst case study,
* J. Concrete Appl. Math. 1 (2003) 136
*
* O. Buneman, Stable online creation of sines and cosines of
* successive angles, Proc. IEEE 75, 1434 1435 (1987).
* O. Buneman, Stable online creation of sines and cosines of
* successive angles, Proc. IEEE 75, 1434 1435 (1987).
*/

/* An union to initialize doubles using byte presentation,
Expand Down Expand Up @@ -406,7 +406,7 @@ ffts_cexp_32f64f(size_t n, size_t d, double *output)

/* table lookup */
cos_a = ct[4 * i + 0].d;
sin_a = ct[4 * i + 2].d;
sin_a = ct[4 * i + 1].d;

/* evaluate polynomials */
cos_b = 1.0 + z * (cc[0].d + z * (cc[1].d + z * cc[2].d));
Expand Down