unset_default_complex_dtype#

ivy.unset_default_complex_dtype()[source]#

Reset the current default complex dtype to the previous state.

Examples

>>> ivy.set_default_complex_dtype(ivy.complex64)
>>> ivy.set_default_complex_dtype(ivy.complex128)
>>> ivy.default_complex_dtype_stack
['complex64','complex128']
>>> ivy.unset_default_complex_dtype()
>>> ivy.default_complex_dtype_stack
['complex64']