Open In App

Get dimensions of array in Julia - ndims() Method

Last Updated : 26 Mar, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
The ndims() is an inbuilt function in julia which is used to return the number of dimension of the specified array A.
Syntax: ndims(A::AbstractArray) Parameters: A: Specified array Returns: It returns the number of dimension of the specified array A.
Example 1: Python
# 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))
Output: Example 2: Python
# 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))
Output:

Next Article
Article Tags :

Similar Reads