這個ndims()
是 julia 中的一個內置函數,用於返回指定數組 A 的維數。
用法: ndims(A::AbstractArray)
參數:
A:指定數組
返回:它返回指定數組 A 的維數。
範例1:
# Julia program to illustrate
# the use of Array ndims() method
# Finding the number of dimension of
# the specified array A.
A = fill(1, 3);
println(ndims(A))
# Finding the number of dimension of
# the specified array B.
B = fill(1, (3, 3));
println(ndims(B))
# Finding the number of dimension of
# the specified array C.
C = fill(1, (3, 1, 2));
println(ndims(C))
輸出:
範例2:
# Julia program to illustrate
# the use of Array ndims() method
# Finding the number of dimension of
# the specified array A.
A = fill(1, 2, 3, 4);
println(ndims(A))
# Finding the number of dimension of
# the specified array B.
B = fill((5, 10), (3, 3));
println(ndims(B))
# Finding the number of dimension of
# the specified array C.
C = fill((5, 10, 15), (3, 1, 2));
println(ndims(C))
輸出:
相關用法
- Julia size()用法及代碼示例
- Julia Array reshape()用法及代碼示例
- Julia Dims()用法及代碼示例
- Julia Array findall()用法及代碼示例
- Julia Array findprev()用法及代碼示例
- Julia Array findnext()用法及代碼示例
- Julia Array findfirst()用法及代碼示例
- Julia Array findlast()用法及代碼示例
- Julia length()用法及代碼示例
- Julia sizeof()用法及代碼示例
- Julia findlast()用法及代碼示例
- Julia length()用法及代碼示例
- Julia repeat()用法及代碼示例
- Julia SubString()用法及代碼示例
- Julia findfirst()用法及代碼示例
- Julia first()用法及代碼示例
- Julia last()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Get dimensions of array in Julia – ndims() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。