这个vect()
是 julia 中的一个内置函数,用于创建一个以传递的元素作为参数的向量。
用法: vect(X…)
参数:
- X:指定的元素。
返回值:它返回由作为参数传递的元素形成的创建向量。
范例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"))
输出:
范例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)))
输出:
相关用法
- Julia ceil()用法及代码示例
- Julia floor()用法及代码示例
- Julia min()用法及代码示例
- Julia sizeof()用法及代码示例
- Julia reverse()用法及代码示例
- Julia Array fill()用法及代码示例
- Julia foreach()用法及代码示例
- Julia count()用法及代码示例
- Julia cmp()用法及代码示例
- Julia Array findall()用法及代码示例
- Julia Array findprev()用法及代码示例
- Julia Array findnext()用法及代码示例
- Julia Array findfirst()用法及代码示例
- Julia Array findlast()用法及代码示例
- Julia ndims()用法及代码示例
- Julia isassigned()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Creation of vectors in Julia – vect() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。