@@ -92,8 +92,8 @@ def dwt_coeff_len(data_len, filter_len, mode):
9292 Data length.
9393 filter_len : int
9494 Filter length.
95- mode : str, optional (default: 'symmetric')
96- Signal extension mode, see Modes
95+ mode : str, optional
96+ Signal extension mode, see :ref:` Modes <ref-modes>`.
9797
9898 Returns
9999 -------
@@ -130,7 +130,7 @@ def dwt(data, wavelet, mode='symmetric', axis=-1):
130130 wavelet : Wavelet object or name
131131 Wavelet to use
132132 mode : str, optional
133- Signal extension mode, see Modes
133+ Signal extension mode, see :ref:` Modes <ref-modes>`.
134134 axis: int, optional
135135 Axis over which to compute the DWT. If not given, the
136136 last axis is used.
@@ -199,14 +199,14 @@ def idwt(cA, cD, wavelet, mode='symmetric', axis=-1):
199199 ----------
200200 cA : array_like or None
201201 Approximation coefficients. If None, will be set to array of zeros
202- with same shape as `cD `.
202+ with same shape as ``cD` `.
203203 cD : array_like or None
204204 Detail coefficients. If None, will be set to array of zeros
205- with same shape as `cA `.
205+ with same shape as ``cA` `.
206206 wavelet : Wavelet object or name
207207 Wavelet to use
208208 mode : str, optional (default: 'symmetric')
209- Signal extension mode, see Modes
209+ Signal extension mode, see :ref:` Modes <ref-modes>`.
210210 axis: int, optional
211211 Axis over which to compute the inverse DWT. If not given, the
212212 last axis is used.
@@ -224,7 +224,7 @@ def idwt(cA, cD, wavelet, mode='symmetric', axis=-1):
224224 >>> pywt.idwt(cA, cD, 'db2', 'smooth')
225225 array([ 1., 2., 3., 4., 5., 6.])
226226
227- One of the neat features of `idwt` is that one of the ``cA`` and ``cD``
227+ One of the neat features of `` idwt` ` is that one of the ``cA`` and ``cD``
228228 arguments can be set to None. In that situation the reconstruction will be
229229 performed using only the other one. Mathematically speaking, this is
230230 equivalent to passing a zero-filled array as one of the arguments.
@@ -300,7 +300,7 @@ def downcoef(part, data, wavelet, mode='symmetric', level=1):
300300
301301 Partial Discrete Wavelet Transform data decomposition.
302302
303- Similar to `pywt.dwt`, but computes only one set of coefficients.
303+ Similar to `` pywt.dwt` `, but computes only one set of coefficients.
304304 Useful when you need only approximation or only details at the given level.
305305
306306 Parameters
@@ -316,7 +316,7 @@ def downcoef(part, data, wavelet, mode='symmetric', level=1):
316316 wavelet : Wavelet object or name
317317 Wavelet to use
318318 mode : str, optional
319- Signal extension mode, see `Modes`. Default is 'symmetric' .
319+ Signal extension mode, see :ref: `Modes <ref-modes>` .
320320 level : int, optional
321321 Decomposition level. Default is 1.
322322
0 commit comments