Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Java
9.4K+ articles
Misc
7.7K+ articles
MATLAB
298+ articles
MATLAB-matrix
9 posts
Recent Articles
Why MATLAB So Fast in Matrix Multiplication?
Last Updated: 22 November 2022
In simple words, we say that Since MATLAB was originally created for numerical linear algebra (matrix manipulations), it has libraries that were specifically created for m...
read more
Picked
MATLAB
Technical Scripter 2022
MATLAB-matrix
How to Select Random Rows from a Matrix in MATLAB?
Last Updated: 28 April 2025
A matrix is an n x n array that stores integers, floating point numbers or alphanumeric data in MATLAB. Indexing a matrix is the same as indexing an array. Syntax:matrix_n...
read more
Picked
MATLAB
MATLAB-matrix
Sparse Matrices in MATLAB
Last Updated: 28 April 2025
Matrices are 2-dimensional arrays that are the most popular data type in MATLAB. A matrix can contain theoretically infinite elements as long as the computer has the requi...
read more
MATLAB
Technical Scripter 2022
MATLAB-matrix
How to Create a Matrix From a Nested Loop in MATLAB?
Last Updated: 28 April 2025
Matrices are 2-dimensional arrays that store numeric or symbolic data. It is convenient to create them with the help of nested loops as the outer loop creates the elements...
read more
Picked
MATLAB
MATLAB-matrix
Calculate Complex Conjugate Transpose in MATLAB
Last Updated: 23 July 2025
The complex conjugate transpose of a matrix is the matrix obtained by transposing the original matrix and then applying the complex conjugate property of complex numbers o...
read more
Picked
MATLAB
MATLAB-matrix
How to Permute the Rows and Columns in a Matrix on MATLAB?
Last Updated: 27 January 2022
In this article, we will discuss how to find the permutation of the rows and columns in a Matrix with the help of multiple approachesMethod 1In this approach, we are simpl...
read more
Picked
MATLAB
MATLAB-matrix
MATLAB-programs
Page-wise matrix multiplication in MATLAB
Last Updated: 04 July 2021
Page-wise matrix multiplication is multiplying two N-D arrays along each dimension or page of two arrays. Matlab allows users to calculate page-wise multiplication using p...
read more
Picked
MATLAB
MATLAB-matrix
Reduced Row Echelon Form (rref) Matrix in MATLAB
Last Updated: 23 July 2025
Reduced Row Echelon Form of a matrix is used to find the rank of a matrix and further allows to solve a system of linear equations. A matrix is in Row Echelon form ifAll r...
read more
Picked
MATLAB
MATLAB-Maths
MATLAB-matrix
Difference between inv() and pinv() functions in MATLAB
Last Updated: 21 August 2021
While Handling data, used for Machine Learning, it's become easy to do operations on data if stored in form of a Matrix. Where inverse is one of the important operations w...
read more
MATLAB
MATLAB-matrix