5 lines
68 B
Python
5 lines
68 B
Python
|
import numpy as np
|
||
|
|
||
|
def f(x):
|
||
|
res = np.sin(x)
|
||
|
return res
|