You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parameters
----------
x
input array
Returns
-------
ret
a numpy array copying all the element of the array ``x``.
Examples
--------
>>> x = ivy.array([-1, 0, 1])
>>> y = ivy.to_numpy(x)
>>> print(y)
[-1 0 1]
>>> print(type(y))
<class 'numpy.ndarray'>
"""
The text was updated successfully, but these errors were encountered:
"""Converts an array into a numpy array.
The text was updated successfully, but these errors were encountered: