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


Julia accumulate!用法及代碼示例


用法:

accumulate!(op, B, A; [dims], [init])

沿維度 dimsA 進行累積運算 op ,將結果存儲在 B 中。提供dims 對於向量是可選的。如果給出了關鍵字參數init,則其值用於實例化累加。另見 accumulate

例子

julia> x = [1, 0, 2, 0, 3];

julia> y = [0, 0, 0, 0, 0];

julia> accumulate!(+, y, x);

julia> y
5-element Vector{Int64}:
 1
 1
 3
 3
 6

julia> A = [1 2; 3 4];

julia> B = [0 0; 0 0];

julia> accumulate!(-, B, A, dims=1);

julia> B
2×2 Matrix{Int64}:
  1   2
 -2  -2

julia> accumulate!(-, B, A, dims=2);

julia> B
2×2 Matrix{Int64}:
 1  -1
 3  -1

相關用法


注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 Base.accumulate! — Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。