這個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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。