这个copyto!()
是 julia 中的一个内置函数,用于将指定集合 src 中的所有元素复制到数组 dest。
用法:
copyto!(dest::AbstractArray, src)
参数:
- dest::抽象数组:指定的目标数组。
- src:指定的源集合。
返回值:它将从指定集合 src 复制的元素返回到数组 dest。
范例1:
# Julia program to illustrate
# the use of copyto !() method
# Getting copied elements from the
# specified collection src to array dest
a = [1, 2, 3, 4, 5];
b = zeros(8);
copyto !(b, a);
println(b)
输出:
范例2:
# Julia program to illustrate
# the use of copyto !() method
# Getting copied elements from the
# specified collection src to array dest
a = [1., 2., 3., 4., 5.];
b = ones(8);
copyto !(b, a);
println(b)
输出:
相关用法
- Julia repeat()用法及代码示例
- Julia collect()用法及代码示例
- Julia foreach()用法及代码示例
- Julia similar()用法及代码示例
- Julia Array findall()用法及代码示例
- Julia count()用法及代码示例
- Julia length()用法及代码示例
- Julia setindex!()用法及代码示例
- Julia Array fill()用法及代码示例
- Julia Array findprev()用法及代码示例
- Julia Array findnext()用法及代码示例
- Julia Array findfirst()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Creating a copy of elements from a collection to an array in Julia – copyto!() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。