توابع مثلثاتی و هذلولوی در پایتون — راهنمای کاربردی
۱۰۴۲ بازدید
آخرین بهروزرسانی:
۱۶ آذر ۱۴۰۱
زمان مطالعه:
۴ دقیقه

در این مطلب، توابع مثلثاتی و هذلولوی در پایتون مورد بررسی قرار گرفتهاند. این توابع، از جمله توابع اعداد مختلط مهم محسوب میشوند.
توابع مثلثاتی و هذلولوی در پایتون
توابع مثلثاتی پایتون در ادامه معرفی شدهاند.
- sin(): این تابع، سینوس عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
- cos(): این تابع، کسینوس عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
- tan(): این تابع، تانژانت عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
در کدهای زیر، روش استفاده از هر یک از این توابع، آموزش داده شده است.
# Python code to demonstrate the working of # sin(), cos(), tan() # importing "cmath" for complex number operations import cmath # Initializing real numbers x = 1.0 y = 1.0 # converting x and y into complex number z z = complex(x,y); # printing sine of the complex number print ("The sine value of complex number is : ",end="") print (cmath.sin(z)) # printing cosine of the complex number print ("The cosine value of complex number is : ",end="") print (cmath.cos(z)) # printing tangent of the complex number print ("The tangent value of complex number is : ",end="") print (cmath.tan(z))
خروجی کدهای بالا، به صورت زیر است.
The sine value of complex number is : (1.2984575814159773+0.6349639147847361j) The cosine value of complex number is : (0.8337300251311491-0.9888977057628651j) The tangent value of complex number is : (0.2717525853195118+1.0839233273386946j)
- asin(): این تابع مقدار آرک سینوس عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
- acos(): این تابع، آرک کسینوس عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
- atan(): این تابع، مقدار آرک تانژانت عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
در کدهای زیر، روش استفاده از هر یک از توابع بیان شده، آموزش داده شده است.
# Python code to demonstrate the working of # asin(), acos(), atan() # importing "cmath" for complex number operations import cmath # Initializing real numbers x = 1.0 y = 1.0 # converting x and y into complex number z z = complex(x,y); # printing arc sine of the complex number print ("The arc sine value of complex number is : ",end="") print (cmath.asin(z)) # printing arc cosine of the complex number print ("The arc cosine value of complex number is : ",end="") print (cmath.acos(z)) # printing arc tangent of the complex number print ("The arc tangent value of complex number is : ",end="") print (cmath.atan(z))
خروجی قطعه کد بالا، به صورت زیر است.
The arc sine value of complex number is : (0.6662394324925153+1.0612750619050357j) The arc cosine value of complex number is : (0.9045568943023814-1.0612750619050357j) The arc tangent value of complex number is : (1.0172219678978514+0.40235947810852507j)
- sinh(): این تابع، سینوس هذلولوی عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
- cosh(): این تابع، کسینوس هذلولوی عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
- tanh(): این تابع، تانژانت هذلولوی عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
در ادامه، روش استفاده از این توابع در کدهای پایتون، بیان شده است.
# Python code to demonstrate the working of # sinh(), cosh(), tanh() # importing "cmath" for complex number operations import cmath # Initializing real numbers x = 1.0 y = 1.0 # converting x and y into complex number z z = complex(x,y); # printing hyperbolic sine of the complex number print ("The hyperbolic sine value of complex number is : ",end="") print (cmath.sinh(z)) # printing hyperbolic cosine of the complex number print ("The hyperbolic cosine value of complex number is : ",end="") print (cmath.cosh(z)) # printing hyperbolic tangent of the complex number print ("The hyperbolic tangent value of complex number is : ",end="") print (cmath.tanh(z))
خروجی قطعه کد بالا، به صورت زیر است.
The hyperbolic sine value of complex number is : (0.6349639147847361+1.2984575814159773j) The hyperbolic cosine value of complex number is : (0.8337300251311491+0.9888977057628651j) The hyperbolic tangent value of complex number is : (1.0839233273386946+0.2717525853195117j)
- asinh(): این تابع، تابع وارون هذلولوی سینوس عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
- acosh(): این تابع، تابع وارون هذلولوی کسینوس عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
- atanh(): این تابع، تابع وارون هذلولوی تانژانت عدد مختلطی که به عنوان آرگومان به آن داده شده است را باز میگرداند.
در کدهای زیر، روش استفاده از هر یک از این توابع، آموزش داده شده است.
# Python code to demonstrate the working of # asinh(), acosh(), atanh() # importing "cmath" for complex number operations import cmath # Initializing real numbers x = 1.0 y = 1.0 # converting x and y into complex number z z = complex(x,y); # printing inverse hyperbolic sine of the complex number print ("The inverse hyperbolic sine value of complex number is : ",end="") print (cmath.asinh(z)) # printing inverse hyperbolic cosine of the complex number print ("The inverse hyperbolic cosine value of complex number is : ",end="") print (cmath.acosh(z)) # printing inverse hyperbolic tangent of the complex number print ("The inverse hyperbolic tangent value of complex number is : ",end="") print (cmath.atanh(z))
خروجی قطعه کد بالا، به صورت زیر است.
The inverse hyperbolic sine value of complex number is : (1.0612750619050357+0.6662394324925153j) The inverse hyperbolic cosine value of complex number is : (1.0612750619050357+0.9045568943023813j) The inverse hyperbolic tangent value of complex number is : (0.40235947810852507+1.0172219678978514j)
اگر نوشته بالا برای شما مفید بوده است، آموزشهای زیر نیز به شما پیشنهاد میشوند:
- مجموعه آموزشهای برنامهنویسی پایتون
- آموزش تکمیلی برنامهنویسی پایتون
- مجموعه آموزشهای دادهکاوی و یادگیری ماشین
- زبان برنامهنویسی پایتون (Python) — از صفر تا صد
- یادگیری علم داده (Data Science) با پایتون — از صفر تا صد
- آموزش پایتون (Python) — مجموعه مقالات جامع وبلاگ فرادرس
^^
اگر بازخوردی درباره این مطلب دارید یا پرسشی دارید که بدون پاسخ مانده است، آن را از طریق بخش نظرات مطرح کنید.
ثبت نظر
منابع:
GeeksforGeeks
کپی شد