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