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


Julia copyto!()用法及代码示例


这个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)

输出:

相关用法


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