Skip to content

Commit 01fc385

Browse files
Correnct acb_dft docs: use len instead of n (#2379)
1 parent fa7a1ab commit 01fc385

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

doc/source/acb_dft.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ If `G=\mathbb Z/n\mathbb Z`, we compute the DFT according to the usual conventio
3333
3434
w_x = \sum_{y\bmod n} v_y e^{-\frac{2i \pi}nxy}
3535
36-
.. function:: void acb_dft(acb_ptr w, acb_srcptr v, slong n, slong prec)
36+
.. function:: void acb_dft(acb_ptr w, acb_srcptr v, slong len, slong prec)
3737

3838
Set *w* to the DFT of *v* of length *len*, using an automatic choice
3939
of algorithm.
4040

41-
.. function:: void acb_dft_inverse(acb_ptr w, acb_srcptr v, slong n, slong prec)
41+
.. function:: void acb_dft_inverse(acb_ptr w, acb_srcptr v, slong len, slong prec)
4242

4343
Compute the inverse DFT of *v* into *w*.
4444

@@ -289,8 +289,7 @@ Bluestein transform
289289
`2^e \geq 2n-1` and a size *n* array of convolution factors.
290290

291291
.. function:: void acb_dft_bluestein_init(acb_dft_bluestein_t t, slong len, slong prec)
292-
293-
.. function:: void acb_dft_bluestein_clear(acb_dft_bluestein_t t)
292+
void acb_dft_bluestein_clear(acb_dft_bluestein_t t)
294293

295294
Initialize and clear a Bluestein scheme to compute DFT of size *len*.
296295

0 commit comments

Comments
 (0)