Con la ayuda del Numpy matrix.tostring()
método, podemos encontrar el código de bytes en formato de string para la array usando el matrix.tostring()
método.
Sintaxis:
matrix.tostring()
Retorno: string de código de bytes de retorno para array
Ejemplo #1:
En este ejemplo, podemos ver que al usar el matrix.tostring()
método podemos encontrar el código de bytes en formato de string para la array dada.
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[4, 1; 12, 3]') # applying matrix.tostring() method geek = gfg.tostring() print(geek)
b’x04x00x00x00x00x00x00x00x01x00x00x00x00x00x00x00x0cx00x00x00x00x00x00x00 \x03\x00\x00\x00\x00\x00\x00\x00′
Ejemplo #2:
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[4, 1, 9; 12, 3, 1; 4, 5, 6]') # applying matrix.tostring() method geek = gfg.tostring() print(geek)
b’x04x00x00x00x00x00x00x00x01x00x00x00x00x00x00x00tx00x00x00x00x00x00x00 \x0c\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x04 \x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00′
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