當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Julia setindex!()用法及代碼示例


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)

輸出:

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Set elements at a given index of array in Julia – setindex!() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。