Skip to content

Commit 2817bef

Browse files
author
bpinsard
committed
fix Complex doc
1 parent ae3591c commit 2817bef

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

nipype/interfaces/fsl/utils.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,9 +1301,10 @@ class Complex(FSLCommand):
13011301
"""fslcomplex is a tool for converting complex data
13021302
Examples
13031303
--------
1304-
>>> complex = Complex()
1305-
>>> complex.inputs.complex_in_file = "complex.nii"
1306-
>>> res = complex.run() # doctest: +SKIP
1304+
>>> cplx = Complex()
1305+
>>> cplx.inputs.complex_in_file = "complex.nii"
1306+
>>> cplx.real_polar = True
1307+
>>> res = cplx.run() # doctest: +SKIP
13071308
13081309
"""
13091310
_cmd = 'fslcomplex'

0 commit comments

Comments
 (0)