La size()
es una función incorporada en julia que se usa para devolver una tupla que contiene las dimensiones de la array especificada. Este formato de tupla devuelto es (a, b, c) donde a son las filas, b son las columnas y c es la altura de la array.
Sintaxis:
tamaño(A::AbstractArray)
o
tamaño(A::AbstractArray, Dim)Parámetros:
- A: array especificada
- Dim: Dimensión especificada
Devoluciones: Devuelve una tupla que contiene las dimensiones de la array especificada.
Ejemplo 1:
# Julia program to illustrate # the use of Array size() method # Finding a tuple containing the dimension of # the specified 1D array A. A = [5, 10, 15, 20] println(size(A)) # Finding a tuple containing the dimension of # the specified 2D array B of size 2*2 B = [5 10; 15 20] println(size(B)) # Finding a tuple containing the dimension of # the specified 3D array C of size 2*2*2 C = cat([1 2; 3 4], [5 6; 7 8], [9 10; 11 12], dims=3) println(size(C))
Salida:
Ejemplo 2:
# Julia program to illustrate # the use of Array size() method # Finding a tuple containing the dimension of # the specified 1D array A. A = [1, 2, 3]; println(size(A, 3)) # Finding a tuple containing the dimension of # the specified 2D array B of size 3*2 B = [2 4; 6 8; 10 12]; println(size(B, 2)) # Finding a tuple containing the dimension of # the specified 3D array C of size 2*2*4 C = cat([10 15; 20 25], [30 35; 40 45], [50 55; 60 65], [70 75; 80 85], dims=3); println(size(C, 2))
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