用Python实现数学复杂函数的计算

刚刚收到朋友的一个小需求:计算方程式,f1=(cos(x)+1)/(cos(y)+1),f2=1-f1;

我用了Python来实现:

import math
def f1(x,y):
    return (math.cos(math.radians(x))+1)/(math.cos(math.radians(y))+1)

def f2(x,y):
    return 1-(math.cos(math.radians(x))+1)/(math.cos(math.radians(y))+1)

print(f1(x=165.9,y=72))
print(f2(x=165.9,y=72))

其中math类的使用参考:https://blog.csdn.net/taonull/article/details/45538963

函数定义参考:https://www.cnblogs.com/codescrew/p/8650979.html

你可能感兴趣的:(Python)