Con la ayuda del Numpy matrix.byteswap()
método, podemos intercambiar el lugar de los bytes de un elemento en la array dada que tiene una o más dimensiones. No funcionaría en array de tipo string o carácter.
Sintaxis:
matrix.byteswap()
Retorno: Devuelve la array intercambiada de bytes
Ejemplo #1:
En este ejemplo podemos ver que con la ayuda del matrix.byteswap()
método podemos intercambiar el lugar de los bytes de un elemento en una array dada.
# import the important module in python import numpy as np # make a matrix with numpy gfg = np.matrix('[1, 2, 3, 4]') # applying matrix.byteswap() method geeks = gfg.byteswap() print(geeks)
Producción:
[[ 72057594037927936 144115188075855872 216172782113783808 288230376151711744]]
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.byteswap() method geeks = gfg.byteswap() print(geeks)
Producción:
[[ 72057594037927936 144115188075855872 216172782113783808] [288230376151711744 360287970189639680 432345564227567616] [504403158265495552 576460752303423488 648518346341351424]]
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