📜  在 Julia 中创建从集合到数组的元素副本 – copyto!() 方法

📅  最后修改于: 2022-05-13 01:55:19.941000             🧑  作者: Mango

在 Julia 中创建从集合到数组的元素副本 – copyto!() 方法

copyto!()是 julia 中的内置函数,用于将指定集合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)

输出: