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


Julia LinearAlgebra.stride1用法及代码示例


用法:

stride1(A) -> Int

以元素大小为单位返回维度 1 中连续数组元素之间的距离。

例子

julia> A = [1,2,3,4]
4-element Vector{Int64}:
 1
 2
 3
 4

julia> LinearAlgebra.stride1(A)
1

julia> B = view(A, 2:2:4)
2-element view(::Vector{Int64}, 2:2:4) with eltype Int64:
 2
 4

julia> LinearAlgebra.stride1(B)
2

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 LinearAlgebra.stride1 — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。