Con la ayuda del matrix.std()
método, podemos encontrar la desviación estándar de una array utilizando el mismo método.
Sintaxis:
matrix.std()
Retorno: Devuelve la desviación estándar de una array
Ejemplo #1:
En este ejemplo podemos encontrar la desviación estándar de una array usando matrix.std()
el método.
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[4, 1; 12, 3]') # applying matrix.std() method geek = gfg.std() print(geek)
Producción:
4.18330013267
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.std() method geek = gfg.std() print(geek)
Producción:
3.3993463424
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