Con la ayuda del Numpy matrix.getI()
método, podemos obtener el inverso multiplicativo del mismo tamaño que el de nuestra array dada.
Sintaxis:
matrix.getI()
Retorno: Devuelve el inverso multiplicativo de la array dada
Ejemplo #1:
En este ejemplo podemos ver que podemos obtener el inverso multiplicativo con la ayuda del método matrix.getI()
.
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[6, 1; 2, 3]') # applying matrix.getI() method geeks = gfg.getI() print(geeks)
Producción:
[[ 0.1875 -0.0625] [-0.125 0.375 ]]
Ejemplo #2:
# import the important module in python import numpy as np # make a matrix with numpy gfg = np.matrix('[1, 2, 3; 4, 5, 6; 7, 8, 9]') # applying matrix.getI() method geeks = gfg.getI() print(geeks)
Producción:
[[ -4.50359963e+15 9.00719925e+15 -4.50359963e+15] [ 9.00719925e+15 -1.80143985e+16 9.00719925e+15] [ -4.50359963e+15 9.00719925e+15 -4.50359963e+15]]
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA