A | 逆行列を計算したい正方行列\(\myvector{A}\)。 A square matrix \(\myvector{A}\) for which the inverse is to be calculated. |
struct matrix A; struct LU A_LU=LU_decomposition(A); struct matrix Ainv=matrix_inverse_givenLU(A_LU); |
struct matrix A; struct LU A_LU=LU_decomposition(A); struct matrix Ainv=matrix_inverse_givenLU(A_LU); |