We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
当然还有 CEILINE 向上舍入(取整) FLOOR 向下舍入(取整)函数 如果大佬们不嫌弃,我可以贡献我的代码
The text was updated successfully, but these errors were encountered:
欢迎欢迎,代码贴上来吧
Sorry, something went wrong.
def SIN(S): return np.sin(S) #求S的正弦值(弧度) def COS(S): return np.cos(S) #求S的余弦值(弧度) def TAN(S): return np.tan(S) #求S的正切值(弧度) def ASIN(S): return np.arcsin(S) #求S的反正弦值 [-1, 1] def ACOS(S): return np.arccos(S) #求S的反余弦值 [-1, 1] def ATAN(S): return np.arctan(S) #求S的反正切值 (-∞, +∞)
def CEILINE(S): return np.ceil(S) #求S的向上取整 def FLOOR(S): return np.floor(S) #求S的向下取整
@mpquant 来啦老哥,我是不需要需要个权限才能提PR?
No branches or pull requests
当然还有 CEILINE 向上舍入(取整) FLOOR 向下舍入(取整)函数
如果大佬们不嫌弃,我可以贡献我的代码
The text was updated successfully, but these errors were encountered: