numpy.alen() en Python

numpy.alen() La función se utiliza para devolver la longitud de la primera dimensión de la array de entrada.

Sintaxis: numpy.alen(arr)

Parámetros:
arr: [array_like] Array de entrada.

Retorno: [int]Longitud de la primera dimensión de arr.

Código #1:

# Python program explaining
# alen() function
   
import numpy as geek
  
# input array(2 * 3)
in_arr = geek.array([[ 2, 0, 7], [ 0, 5, 9]])
print ("Input array : ", in_arr) 
  
out_dim = geek.alen(in_arr)
print ("Length of the first dimension of arr: ", out_dim)
Producción:

Input array :  [[2, 0, 7], [0, 5, 9]]
Length of the first dimension of arr:  2

 
Código #2:

# Python program explaining
# alen() function
   
import numpy as geek
  
# input array(1 * 3*3)
in_arr = geek.arange(9).reshape(1, 3, 3)
print ("Input array : \n", in_arr) 
  
out_dim = geek.alen(in_arr)
print ("Length of the first dimension of arr: ", out_dim)
Producción:

Input array : 
 [[[0 1 2]
  [3 4 5]
  [6 7 8]]]
Length of the first dimension of arr:  1

Publicación traducida automáticamente

Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *