Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

คำนวณไฮเพอร์โบลิกแทนเจนต์ผกผันด้วย scimath ใน Python


ในการคำนวณไฮเปอร์โบลิกแทนเจนต์ผกผันกับ arctanh ให้ใช้เมธอด numpy.emath.arctanh() ในPython ส่งกลับ “ค่าหลัก” ของ arctanh(x) สำหรับจำนวนจริง x ที่ abs(x) <1 นี่คือจำนวนจริง ถ้า abs(x)> 1 หรือถ้า x ซับซ้อน ผลลัพธ์จะซับซ้อน สุดท้าย x =1 return``inf`` และ x=-1returns -inf.

วิธีการส่งกลับค่าไฮเปอร์โบลิกแทนเจนต์ผกผันของค่า x ถ้า x เป็นสเกลาร์จึงออกมา มิฉะนั้น อาร์เรย์จะถูกส่งคืน พารามิเตอร์ที่ 1 คือค่าที่ต้องใช้ arctanh

ขั้นตอน

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import numpy as np

สร้างอาร์เรย์ numpy โดยใช้เมธอด array() -

arr = np.array([0, 1j, 2j])

แสดงอาร์เรย์ -

print("Array...\n", arr)

รับประเภทของอาร์เรย์ -

print("\nOur Array type...\n", arr.dtype)

รับขนาดของอาร์เรย์ -

print("\nOur Array Dimensions...\n",arr.ndim)

ในการคำนวณไฮเปอร์โบลิกแทนเจนต์ผกผันกับ arctanh ให้ใช้เมธอด numpy.emath.arctanh() ในPython -

print("\nResult...\n",np.emath.arctanh(arr))

ตัวอย่าง

import numpy as np

# Create a numpy array using the array() method
arr = np.array([0, 1j, 2j])

# Display the array
print("Array...\n", arr)

# Get the type of the array
print("\nOur Array type...\n", arr.dtype)

# Get the dimensions of the Array
print("\nOur Array Dimensions...\n",arr.ndim)

# Get the number of elements in the Array
print("\nNumber of elements...\n", arr.size)

# To compute the inverse hyperbolic tangent with arctanh, use the numpy.emath.arctanh() method in Python
print("\nResult...\n",np.emath.arctanh(arr))

ผลลัพธ์

Array...
[0.+0.j 0.+1.j 0.+2.j]

Our Array type...
complex128

Our Array Dimensions...
1

Number of elements...
3

Result...
[0.+0.j 0.+0.78539816j 0.+1.10714872j]