x와 y의 데카르트 곱에 대한 2차원 다항식을 평가하려면 Python에서 polynomial.polygrid2d(x,y, c) 메서드를 사용합니다. 이 메서드는 x와 y의 데카르트 곱의 점에서 2차원 다항식의 값을 반환합니다.
첫 번째 매개변수인 x와 y는 2차원 계열이며 x와 y의 데카르트 곱의 점에서 평가됩니다. x 또는 y가 목록이나 튜플이면 먼저 ndarray로 변환하고, 그렇지 않으면 변경하지 않고 그대로 두고 ndarray가 아니면 스칼라로 처리합니다.
두 번째 매개변수 c는 차수 i,j에 대한 계수가 c[i,j]에 포함되도록 정렬된 계수의 배열입니다. c가 2보다 큰 차원을 가지면 나머지 인덱스는 여러 계수 세트를 열거합니다. c의 차원이 2개 미만이면 2차원으로 만들기 위해 1차원이 해당 모양에 암시적으로 추가됩니다. 결과의 모양은 c.shape[2:] + x.shape + y.shape입니다.
단계
먼저 필요한 라이브러리를 가져옵니다 -
import numpy as np from numpy.polynomial.polynomial import polygrid2d
계수의 2D 배열 생성 -
c = np.arange(4).reshape(2,2)
배열 표시 -
print("Our Array...\n",c)
치수 확인 -
print("\nDimensions of our Array...\n",c.ndim)
데이터 유형 가져오기 -
print("\nDatatype of our Array object...\n",c.dtype)
모양 가져오기 -
print("\nShape of our Array object...\n",c.shape)
x와 y의 데카르트 곱에 대한 2차원 다항식을 평가하려면 Python에서 polynomial.polygrid2d(x,y, c) 메서드를 사용합니다. 이 방법은 x와 y의 데카르트 곱의 점에서 2차원 다항식의 값을 반환합니다. -
print("\nResult...\n",polygrid2d([1,2],[1,2], c))
예시
import numpy as np from numpy.polynomial.polynomial import polygrid2d # Create a 2D array of coefficients c = np.arange(4).reshape(2,2) # Display the array print("Our Array...\n",c) # Check the Dimensions print("\nDimensions of our Array...\n",c.ndim) # Get the Datatype print("\nDatatype of our Array object...\n",c.dtype) # Get the Shape print("\nShape of our Array object...\n",c.shape) # To evaluate a 2-D polynomial on the Cartesian product of x and y, use the polynomial.polygrid2d(x, y, c) method in Python print("\nResult...\n",polygrid2d([1,2],[1,2], c))
출력
Our Array... [[0 1] [2 3]] Dimensions of our Array... 2 Datatype of our Array object... int64 Shape of our Array object... (2, 2) Result... [[ 6. 10.] [11. 18.]]