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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。