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


Julia Dims()用法及代碼示例


這個Dims()是 julia 中的一個內置函數,用於表示指定 AbstractArray 的維度。

用法: Dims(A)

參數:

  • A:指定數組

返回值:它返回指定 AbstractArray 的表示維度。

範例1:




# Julia program to illustrate 
# the use of Dims() method
  
# Getting the represented dimensions
# of the specified AbstractArray.
A = [1, 2, 3, 4]
println(Dims(A))
  
B = (5, 10, 15, 20)
println(Dims(B))

輸出:

(1, 2, 3, 4)
(5, 10, 15, 20)

範例2:


# Julia program to illustrate 
# the use of Dims() method
  
# Getting the represented dimensions
# of the specified AbstractArray.
A = [1 2 3; 4 5 6]
println(Dims(A))
  
B = cat([1 2; 3 4], [5 6; 7 8], [2 2; 3 4], dims = 3)
println(Dims(B))

輸出:

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Representing the dimensions of array in Julia – Dims() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。