La Dims()
es una función incorporada en julia que se usa para representar las dimensiones del AbstractArray especificado.
Sintaxis: Dims(A)
Parámetros:
- A: array especificada
Devoluciones: Devuelve las dimensiones representadas del AbstractArray especificado.
Ejemplo 1:
# Julia program to illustrate # the use of Dims() method # Getting the represented dimensions # of the specified AbstractArray. A = [1, 2, 3, 4] println(Dims(A)) B = (5, 10, 15, 20) println(Dims(B))
Producción:
(1, 2, 3, 4) (5, 10, 15, 20)
Ejemplo 2:
# Julia program to illustrate # the use of Dims() method # Getting the represented dimensions # of the specified AbstractArray. A = [1 2 3; 4 5 6] println(Dims(A)) B = cat([1 2; 3 4], [5 6; 7 8], [2 2; 3 4], dims = 3) println(Dims(B))
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