Effacer les filtres
Effacer les filtres

how to count row and column of a matrix

451 vues (au cours des 30 derniers jours)
eri
eri le 14 Déc 2011
Commenté : Ali Faragallah le 14 Mar 2021
if i have a big matrix and i don't know its size, how to find out its size? and how to save it as variable?

Réponse acceptée

the cyclist
the cyclist le 14 Déc 2011
[m,n] = size(A)
  3 commentaires
Muhammad nasiri
Muhammad nasiri le 14 Nov 2017
thanks
Ali Faragallah
Ali Faragallah le 14 Mar 2021
thank you

Connectez-vous pour commenter.

Plus de réponses (2)

Md. Kawsar Ahmed Asif
Md. Kawsar Ahmed Asif le 13 Déc 2017
Modifié(e) : Md. Kawsar Ahmed Asif le 13 Déc 2017
[rownum,colnum]=size(A)
Where 'A' is a mxn matrix.

Anurag Pratap Singh
Anurag Pratap Singh le 25 Juin 2020
Hii Eri
To know the size of a matrix you can use the size function and pass your matrix in it
[NumRows NumCols]=size(your_matrix);
The first output is the Number of rows and second the number of columns
Thank you

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by