Con la ayuda del Numpy matrix.put()
método, podemos poner el valor pasando el índice y el valor en una array dada.
Sintaxis:
matrix.put(index, value)
Retorno : Retorna nueva array
Ejemplo #1:
En este ejemplo podemos ver que podemos poner el valor de una array dada con la ayuda del método matrix.put()
.
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[64, 1; 12, 3]') # applying matrix.put() method gfg.put((0, 1), 45) print(gfg)
Producción:
[[45 45] [12 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.put() method gfg.put(2, 43) print(gfg)
Producción:
[[ 1 2 43] [ 4 5 6] [ 7 8 -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