행렬의 (Moore-Penrose) 의사 역행렬을 계산하려면 Python에서 numpy.linalg.pinv() 메서드를 사용합니다. SVD(특이값 분해)를 사용하고 모든 큰 특이값을 포함하여 행렬의 일반화된 역행렬을 계산합니다.
첫 번째 매개변수인 a는 의사 반전될 행렬 또는 행렬 스택입니다. 두 번째 매개변수인 rcodn은 작은 특이값에 대한 차단입니다. rcond * maximum_singular_value보다 작거나 같은 특이값은 0으로 설정됩니다. 행렬 스택에 대해 브로드캐스트합니다. 세 번째 매개변수인 hermitian이 True이면 a를 Hermitian으로 가정하여 특이값을 찾는 데 보다 효율적인 방법을 제공합니다. 기본값은 False입니다.
단계
먼저 필요한 라이브러리를 가져옵니다-
import numpy as np
randn() −
를 사용하여 배열을 만들고 임의의 값으로 채웁니다.arr = np.random.randn(9, 6)
배열 표시 -
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)
행렬의 (Moore-Penrose) 의사 역행렬을 계산하려면 numpy.linalg.pinv() 메서드를 사용하십시오 -
print("\nResult...\n",np.linalg.pinv(arr))
예시
import numpy as np # Create an array and fill with random values using randn() arr = np.random.randn(9, 6) # 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 (Moore-Penrose) pseudo-inverse of a matrix, use the numpy.linalg.pinv() method in Python. print("\nResult...\n",np.linalg.pinv(arr))
출력
0.05644831 -0.75323572 -1.95304923 0.17167461 -0.64155798 -1.38576017] - - 1.40043868 -0.62073383 -0.13501655 0.79788858 -1.47284176 1.03076414] 0.52384943 -0.51581571 -0.35674166 ... [2.14644893 -0.14757929 0.14252834 0.54433625 -0.21374741 0.08804508] 우리 어레이Our Array... [[ 2.14644893 -0.14757929 0.14252834 0.54433625 -0.21374741 0.08804508] [-0.05644831 -0.75323572 -1.95304923 0.17167461 -0.64155798 -1.38576017] [-1.40043868 -0.62073383 -0.13501655 0.79788858 -1.47284176 1.03076414] [ 0.52384943 -0.51581571 -0.35674166 1.32374059 -0.31340491 0.26292693] [-0.28434997 0.07384262 1.62577397 -0.54059147 -1.02090985 2.36613533] [-0.22025823 -1.07203572 1.30598633 0.39122889 2.05180917 1.59262088] [-2.53455261 0.79274529 0.1822599 1.11345144 0.54343454 0.27523291] [-1.11915817 1.21435385 0.87345865 0.85541497 1.90349169 -0.05778244] [ 0.99636776 0.83682256 -0.03753307 -0.11389184 1.14089214 0.11317533]] Dimensions of our Array... 2 Datatype of our Array object... float64 Shape of our Array object... (9, 6) Result... [[ 0.19229685 -0.03266066 -0.05913054 0.0990068 0.01377734 -0.02829296 -0.11340774 -0.02715551 0.13106032] [ 0.01242764 -0.03612164 -0.0019295 0.00090135 0.15372234 -0.31686534 0.16305901 0.09059529 0.45836714] [ 0.23344397 -0.46295399 -0.17382325 -0.0801975 -0.10227208 -0.04366331 -0.14434698 0.2615106 -0.84357154] [ 0.28299012 -0.06772757 0.11355691 0.31272279 -0.11283442 -0.0361218 0.12165585 0.17999476 -0.14682526] [-0.11148768 0.11063486 -0.07823299 -0.03096356 -0.07104466 0.24122668 0.02395283 0.01890529 0.26797921] [-0.13235983 0.21188986 0.20340676 0.09081754 0.31058622 0.13372814 0.11417357 -0.20740154 0.71096452]]