fix documentation

This commit is contained in:
Martin Reinecke 2012-11-27 11:14:12 +01:00
parent c631d58b24
commit 17dcfd2417

View file

@ -122,7 +122,7 @@ void kill_real_plan (real_plan plan);
- on exit, it has the form <tt>r0, r1, i1, r2, i2, ...</tt> - on exit, it has the form <tt>r0, r1, i1, r2, i2, ...</tt>
(a total of \a length values). */ (a total of \a length values). */
void real_plan_forward_fftpack (real_plan plan, double *data); void real_plan_forward_fftpack (real_plan plan, double *data);
/*! Computes a real forward FFT on \a data, using \a plan /*! Computes a real backward FFT on \a data, using \a plan
and assuming the FFTPACK storage scheme: and assuming the FFTPACK storage scheme:
- on entry, \a data has the form <tt>r0, r1, i1, r2, i2, ...</tt> - on entry, \a data has the form <tt>r0, r1, i1, r2, i2, ...</tt>
(a total of \a length values); (a total of \a length values);
@ -143,8 +143,7 @@ void real_plan_backward_fftw (real_plan plan, double *data);
- on entry, \a data has the form <tt>r0, [ignored], r1, [ignored], ..., - on entry, \a data has the form <tt>r0, [ignored], r1, [ignored], ...,
r[length-1], [ignored]</tt>; r[length-1], [ignored]</tt>;
- on exit, it has the form <tt>r0, i0, r1, i1, ..., - on exit, it has the form <tt>r0, i0, r1, i1, ...,
r[length-1], i[length-1]</tt>. r[length-1], i[length-1]</tt>. */
*/
void real_plan_forward_c (real_plan plan, double *data); void real_plan_forward_c (real_plan plan, double *data);
/*! Computes a real backward FFT on \a data, using \a plan /*! Computes a real backward FFT on \a data, using \a plan
and assuming a full-complex storage scheme: and assuming a full-complex storage scheme: