Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python에서 Chebyshev 다항식과 x, y, z 샘플 포인트의 의사 Vandermonde 행렬 생성

<시간/>

Chebyshev 다항식과 x, y, z 샘플 포인트의 의사 Vandermonde 행렬을 생성하려면 Python Numpy에서 chebyshev.chebvander()를 사용합니다. 이 메서드는 도 및 샘플 포인트(x, y, z)의 의사 Vandermondematrix를 반환합니다.

매개변수 x, y, z는 모두 같은 모양의 점 좌표 배열입니다. 복잡한 요소가 있는지 여부에 따라 dtypes가 float64 또는 complex128로 변환됩니다. 스칼라는 1차원 배열로 변환됩니다. 매개변수 deg는 [x_deg, y_deg, z_deg] 형식의 최대 각도 목록입니다.

단계

먼저 필요한 라이브러리를 가져옵니다 -

import numpy as np
from numpy.polynomial import chebyshev as C

numpy.array() 메서드를 사용하여 동일한 모양의 점 좌표 배열을 만듭니다. -

x = np.array([1, 2])
y = np.array([3, 4])
z = np.array([5, 6])

배열 표시 -

print("Array1...\n",x)
print("\nArray2...\n",y)
print("\nArray3...\n",z)

데이터 유형 표시 -

print("\nArray1 datatype...\n",x.dtype)
print("\nArray2 datatype...\n",y.dtype)
print("\nArray3 datatype...\n",z.dtype)

두 어레이의 차원을 확인하십시오 -

print("\nDimensions of Array1...\n",x.ndim)
print("\nDimensions of Array2...\n",y.ndim)
print("\nDimensions of Array3...\n",z.ndim)

두 배열의 모양을 확인하십시오 -

print("\nShape of Array1...\n",x.shape)
print("\nShape of Array2...\n",y.shape)
print("\nShape of Array3...\n",z.shape)

Chebyshev 다항식과 x, y, z 샘플 포인트의 의사 Vandermonde 행렬을 생성하려면 Python에서 chebyshev.chebvander()를 사용하십시오 -

x_deg, y_deg, z_deg = 2, 3, 4
print("\nResult...\n",C.chebvander3d(x,y, z, [x_deg, y_deg, z_deg]))

예시

import numpy as np
from numpy.polynomial import chebyshev as C

# Create arrays of point coordinates, all of the same shape using the numpy.array() method
x = np.array([1, 2])
y = np.array([3, 4])
z = np.array([5, 6])

# Display the arrays
print("Array1...\n",x)
print("\nArray2...\n",y)
print("\nArray3...\n",z)

# Display the datatype
print("\nArray1 datatype...\n",x.dtype)
print("\nArray2 datatype...\n",y.dtype)
print("\nArray3 datatype...\n",z.dtype)

# Check the Dimensions of both the arrays
print("\nDimensions of Array1...\n",x.ndim)
print("\nDimensions of Array2...\n",y.ndim)
print("\nDimensions of Array3...\n",z.ndim)

# Check the Shape of both the arrays
print("\nShape of Array1...\n",x.shape)
print("\nShape of Array2...\n",y.shape)
print("\nShape of Array3...\n",z.shape)

# To generate a pseudo Vandermonde matrix of the Chebyshev polynomial and x, y, z sample points, use the chebyshev.chebvander() in Python Numpy
# The method returns the pseudo-Vandermonde matrix of degrees deg and sample points (x, y, z).
x_deg, y_deg, z_deg = 2, 3, 4
print("\nResult...\n",C.chebvander3d(x,y, z, [x_deg, y_deg, z_deg]))

출력

Array1...
   [1 2]

Array2...
   [3 4]

Array3...
[5 6]

Array1 datatype...
int64

Array2 datatype...
int64

Array3 datatype...
int64

Dimensions of Array1...
1

Dimensions of Array2...
1

Dimensions of Array3...
1

Shape of Array1...
(2,)

Shape of Array2...
(2,)

Shape of Array3...
(2,)

Result...
   [[1.0000000e+00 5.0000000e+00 4.9000000e+01 4.8500000e+02 4.8010000e+03
     3.0000000e+00 1.5000000e+01 1.4700000e+02 1.4550000e+03 1.4403000e+04
     1.7000000e+01 8.5000000e+01 8.3300000e+02 8.2450000e+03 8.1617000e+04
     9.9000000e+01 4.9500000e+02 4.8510000e+03 4.8015000e+04 4.7529900e+05
     1.0000000e+00 5.0000000e+00 4.9000000e+01 4.8500000e+02 4.8010000e+03
     3.0000000e+00 1.5000000e+01 1.4700000e+02 1.4550000e+03 1.4403000e+04
     1.7000000e+01 8.5000000e+01 8.3300000e+02 8.2450000e+03 8.1617000e+04
     9.9000000e+01 4.9500000e+02 4.8510000e+03 4.8015000e+04 4.7529900e+05
     1.0000000e+00 5.0000000e+00 4.9000000e+01 4.8500000e+02 4.8010000e+03
     3.0000000e+00 1.5000000e+01 1.4700000e+02 1.4550000e+03 1.4403000e+04
     1.7000000e+01 8.5000000e+01 8.3300000e+02 8.2450000e+03 8.1617000e+04
     9.9000000e+01 4.9500000e+02 4.8510000e+03 4.8015000e+04 4.7529900e+05]
    [1.0000000e+00 6.0000000e+00 7.1000000e+01 8.4600000e+02 1.0081000e+04
     4.0000000e+00 2.4000000e+01 2.8400000e+02 3.3840000e+03 4.0324000e+04
     3.1000000e+01 1.8600000e+02 2.2010000e+03 2.6226000e+04 3.1251100e+05
     2.4400000e+02 1.4640000e+03 1.7324000e+04 2.0642400e+05 2.4597640e+06
     2.0000000e+00 1.2000000e+01 1.4200000e+02 1.6920000e+03 2.0162000e+04
     8.0000000e+00 4.8000000e+01 5.6800000e+02 6.7680000e+03 8.0648000e+04
     6.2000000e+01 3.7200000e+02 4.4020000e+03 5.2452000e+04 6.2502200e+05
     4.8800000e+02 2.9280000e+03 3.4648000e+04 4.1284800e+05 4.9195280e+06
     7.0000000e+00 4.2000000e+01 4.9700000e+02 5.9220000e+03 7.0567000e+04
     2.8000000e+01 1.6800000e+02 1.9880000e+03 2.3688000e+04 2.8226800e+05
     2.1700000e+02 1.3020000e+03 1.5407000e+04 1.8358200e+05 2.1875770e+06
     1.7080000e+03 1.0248000e+04 1.2126800e+05 1.4449680e+06 1.7218348e+07]]