Con la ayuda del Numpy matrix.getT()
método, podemos obtener la transpuesta del mismo tamaño que nuestra array dada.
Sintaxis:
matrix.getT()
Return : Devuelve la transpuesta de la array dada
Ejemplo #1:
En este ejemplo podemos ver que podemos obtener la transposición con la ayuda del método matrix.getT()
.
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[6, 1; 2, 3]') # applying matrix.getT() method geeks = gfg.getT() print(geeks)
Producción:
[[6 2] [1 3]]
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.getT() method geeks = gfg.getT() print(geeks)
Producción:
[[1 4 7] [2 5 8] [3 6 9]]
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