La ndims()
es una función incorporada en julia que se usa para devolver el número de dimensión de la array A especificada.
Sintaxis: ndims(A::AbstractArray)
Parámetros:
A: array especificadaDevoluciones: Devuelve el número de dimensión de la array A especificada.
Ejemplo 1:
# Julia program to illustrate # the use of Array ndims() method # Finding the number of dimension of # the specified array A. A = fill(1, 3); println(ndims(A)) # Finding the number of dimension of # the specified array B. B = fill(1, (3, 3)); println(ndims(B)) # Finding the number of dimension of # the specified array C. C = fill(1, (3, 1, 2)); println(ndims(C))
Producción:
Ejemplo 2:
# Julia program to illustrate # the use of Array ndims() method # Finding the number of dimension of # the specified array A. A = fill(1, 2, 3, 4); println(ndims(A)) # Finding the number of dimension of # the specified array B. B = fill((5, 10), (3, 3)); println(ndims(B)) # Finding the number of dimension of # the specified array C. C = fill((5, 10, 15), (3, 1, 2)); println(ndims(C))
Producción:
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA