Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arcsin #23794

Closed
thaileqt opened this issue Sep 18, 2023 · 2 comments
Closed

arcsin #23794

thaileqt opened this issue Sep 18, 2023 · 2 comments
Labels
Sub Task a sub task which is stemming from a ToDo list issue

Comments

@thaileqt
Copy link
Contributor

No description provided.

@thaileqt thaileqt added the Sub Task a sub task which is stemming from a ToDo list issue label Sep 18, 2023
@alikara345
Copy link

`import numpy as np
import matplotlib.pyplot as plt
import math

creating an array

x = np.array([[1, 0], [-1, -0.5]])

taking the arcsin element-wise

myarray = np.arcsin(x)

print(myarray)

plt.plot(myarray)
plt.show()`

@thaileqt thaileqt closed this as not planned Won't fix, can't repro, duplicate, stale Sep 21, 2023
@alikara345
Copy link

alikara345 commented Sep 21, 2023

`import numpy as np

def arsin(x, y,):
x = np.array([[1, 0], [-1, -0.5]])

x_np = ivy.to_numpy(x)

arcsin= np.arcsin(x)


arcsin = ivy.to_ivy_func(arcsin)

return arcsin

arsin()`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Sub Task a sub task which is stemming from a ToDo list issue
Projects
None yet
Development

No branches or pull requests

2 participants