Es vect()
una función incorporada en julia que se usa para crear un vector con los elementos pasados como parámetro.
Sintaxis: vect(X…)
Parámetros:
- X: Elementos especificados.
Devuelve: Devuelve el vector creado formado por los elementos pasados como parámetro.
Ejemplo 1:
# Julia program to illustrate # the use of vect() method # Getting the created vector formed # by the elements passed as parameter println(Base.vect(1, 2, 3, 4)) println(Base.vect(1.0, 2.1, 3.2, 4.5)) println(Base.vect("a", "b", "c")) println(Base.vect("ab", "bc", "cd"))
Producción:
Ejemplo 2:
# Julia program to illustrate # the use of vect() method # Getting the created vector formed # by the elements passed as parameter println(Base.vect(UInt8(6), 2, 1)) println(Base.vect(UInt8(1), 3.6, 1//2)) println(Base.vect(UInt8(1), 2.5, 8.0)) println(Base.vect(UInt8(5), UInt16(25), UInt32(198)))
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