입력 배열의 밑이 2인 로그를 반환하려면 Python에서 numpy.log2() 메서드를 사용합니다. Numpy이 메서드는 x의 밑이 2인 로그를 반환합니다. x가 스칼라이면 이것은 스칼라입니다. 첫 번째 매개변수 x는 배열과 유사한 입력 값입니다. 두 번째 매개변수는 결과가 저장되는 위치인 out입니다. 제공된 경우 입력이 브로드캐스트하는 모양이 있어야 합니다. 제공되지 않거나 None이면 새로 할당된 배열이 반환됩니다. 튜플(키워드 인수로만 가능)은 출력 수와 길이가 같아야 합니다.
세 번째 매개변수는 조건이 입력을 통해 브로드캐스트되는 곳입니다. 조건이 True인 위치에서 out 배열은 ufunc 결과로 설정됩니다. 다른 곳에서는 out 배열이 원래 값을 유지합니다. 초기화되지 않은 out 배열이 기본 out=None을 통해 생성되는 경우 조건이 False인 위치는 초기화되지 않은 상태로 유지됩니다.
단계
먼저 필요한 라이브러리를 가져옵니다 -
import numpy as np
array() 메서드를 사용하여 배열 생성 -
arr = np.array([0+1.j, 1, 2+0.j])
배열 표시 -
print("Array...\n", arr)
배열의 유형 가져오기 -
print("\nOur Array type...\n", arr.dtype)
배열의 차원 가져오기 -
print("\nOur Array Dimension...\n",arr.ndim)
배열의 모양 가져오기 -
print("\nOur Array Shape...\n",arr.shape)
입력 배열의 밑이 2인 로그를 반환하려면 Python Numpy에서 numpy.log2() 메서드를 사용하십시오 -
print("\nResult...\n",np.log2(arr))
예시
import numpy as np # Create an array using the array() method arr = np.array([0+1.j, 1, 2+0.j]) # 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 Dimension...\n",arr.ndim) # Get the shape of the Array print("\nOur Array Shape...\n",arr.shape) # To return the base 2 logarithm of the input array, use the numpy.log2() method in Python Numpy # The method returns Base-2 logarithm of x. This is a scalar if x is a scalar. print("\nResult...\n",np.log2(arr))
출력
Array... [0.+1.j 1.+0.j 2.+0.j] Our Array type... complex128 Our Array Dimension... 1 Our Array Shape... (3,) Result... [0.+2.26618007j 0.+0.j 1.+0.j ]