scima로 밑이 2인 로그를 계산하려면 Python Numpy에서 np.emath.log2() 메서드를 사용합니다. 이 메서드는 x 값의 밑이 2인 로그를 반환합니다. x가 스칼라이면 out이고 그렇지 않으면 배열이 반환됩니다. 첫 번째 매개변수 x는 로그 밑이 2인 값입니다.
단계
먼저 필요한 라이브러리를 가져옵니다 -
import numpy as np
array() 메서드를 사용하여 numpy 배열 만들기 -
arr = np.array([np.inf, -np.inf, 16, np.exp(1), -np.exp(1), -32])
배열 표시 -
print("Our Array...\n",arr)
치수 확인 -
print("\nDimensions of our Array...\n",arr.ndim)
데이터 유형 가져오기 -
print("\nDatatype of our Array object...\n",arr.dtype)
모양 가져오기 -
print("\nShape of our Array object...\n",arr.shape)
scima로 밑이 2인 로그를 계산하려면 Python Numpy에서 np.emath.log2() 메서드를 사용합니다. 이 메서드는 x 값의 밑이 2인 로그를 반환합니다. x가 스칼라이면 out이고 그렇지 않으면 배열이 반환됩니다. −
print("\nResult (log2)...\n",np.emath.log2(arr))
예시
import numpy as np # Creating a numpy array using the array() method arr = np.array([np.inf, -np.inf, 16, np.exp(1), -np.exp(1), -32]) # Display the array print("Our Array...\n",arr) # Check the Dimensions print("\nDimensions of our Array...\n",arr.ndim) # Get the Datatype print("\nDatatype of our Array object...\n",arr.dtype) # Get the Shape print("\nShape of our Array object...\n",arr.shape) # To compute the logarithm base 2 with scimath, use the np.emath.log2() method in Python Numpy # The method returns the log base 2 of the x value(s). If x was a scalar, so is out, otherwise an array is returned. print("\nResult (log2)...\n",np.emath.log2(arr))
출력
Our Array... [ inf -inf 16. 2.71828183 -2.71828183 -32. ] Dimensions of our Array... 1 Datatype of our Array object... float64 Shape of our Array object... (6,) Result (log2)... [ inf+0.j inf+4.53236014j 4. +0.j 1.44269504+0.j 1.44269504+4.53236014j 5. +4.53236014j]