当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia collect()用法及代码示例


这个collect()是 julia 中的一个内置函数,用于返回指定集合或迭代器中所有项目的数组。

用法:
collect(collection)
or
collect(element_type, collection)

参数:

  • collection:指定的集合或迭代器。
  • element_type:指定类型的元素。

返回值:它返回指定集合或迭代器中所有项目的数组。

范例1:




# Julia program to illustrate 
# the use of collection() method
  
# Getting an array of all items in
# the specified collection or iterator.
println(collect(1:2:13))
println(collect(1:4))
println(collect(1:10))
println(collect(1:5:10))

输出:

[1, 3, 5, 7, 9, 11, 13]
[1, 2, 3, 4]
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
[1, 6]

范例2:


# Julia program to illustrate 
# the use of collection() method
  
# Getting an Array with the given 
# element type of all items in 
# a collection or iterable.
println(collect(Int32, 1:2:5))
println(collect(Int64, 1:5))
println(collect(Float32, 1:2:5))
println(collect(Float64, 1:5))

输出:

Int32[1, 3, 5]
[1, 2, 3, 4, 5]
Float32[1.0, 3.0, 5.0]
[1.0, 2.0, 3.0, 4.0, 5.0]

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting an array of all items of a collection in Julia – collect() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。