Learn Python
Learn Data Structure & Algorithm
Numpy Introduction
Numpy Array
Numpy Attributes
Numpy generate random numbers
Numpy Slicing
Numpy Concatenate & split
Numpy Insert & delete
Numpy Math
Numpy Condition
Numpy Reshaping
Learn Pandas
Matplotlib
Learn Seaborn
Learn Statistics
Learn Math
Learn MATLAB
Learn Machine learning
Learn Github
Learn OpenCV
Learn Deep Learning
Learn MySQL
Learn MongoDB
Learn Web scraping
Learn Excel
Learn Power BI
Learn Tableau
Learn Docker
Learn Hadoop
To find matrix dimension ndim is used. At first, write the matrix variable name and then .ndim attribute. By doing this you will get the dimension of the matrix.
To find the matrix shape, shape attribute is used. At first, write the matrix variable name and then .shape.
To find matrix data type, this attribute is used. First, write the matrix variable name then .dtype.
Size attribute shows the total number of elements present in the array.
This attribute shows each element size in bites, present in the array.
Flatten method converts 2D,3D, or any dimension array into one dimension array.
Transpose function converts all the columns into rows and all rows into columns.
Unique attribute will print the unique values of the given array.