setindex!() 是 julia 中的一個內置函數,用於將給定數組 X 中的值存儲在由 inds 指定的 A 的某個子集中。
用法:
setindex!(A, X, inds...)
參數:
- A:指定函數。
- X:指定數組。
- inds:指定索引。
返回值:它不返回任何值。
範例1:
Python
# Julia program to illustrate
# the use of Array setindex!() method
# This function store values from an array
# X within some subset of A as
# specified by inds.
A = zeros(2, 2);
setindex !(A, [5, 10], [1, 2]);
A[[3, 4]] = [15, 20];
println(A)
輸出:
範例2:
Python
# Julia program to illustrate
# the use of Array setindex!() method
# This function store values from an array
# X within some subset of A as
# specified by inds.
A = ones(2, 2);
setindex !(A, [2, 4], [1, 2]);
A[[3, 4]] = [6, 8];
println(A)
輸出:
相關用法
- Julia Array findprev()用法及代碼示例
- Julia Array findnext()用法及代碼示例
- Julia Array findfirst()用法及代碼示例
- Julia Array findlast()用法及代碼示例
- Julia isassigned()用法及代碼示例
- Julia eachindex()用法及代碼示例
- Julia findmax()用法及代碼示例
- Julia findmin()用法及代碼示例
- Julia getindex()用法及代碼示例
- Julia Array findall()用法及代碼示例
- Julia count()用法及代碼示例
- Julia length()用法及代碼示例
- Julia repeat()用法及代碼示例
- Julia copyto!()用法及代碼示例
- Julia Array fill()用法及代碼示例
- Julia Array reshape()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Set elements at a given index of array in Julia – setindex!() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。