count rows in matrix ?
古いコメントを表示
hey, i want to know is there a way to get how many rows are there in a given matrix. like for example when we say 'length(A)' it can give number of columns in a matrix(A), likewise can we know about number of rows ?
thank you.
3 件のコメント
Anand Gehlot
2016 年 10 月 16 日
Use height(T)
https://www.mathworks.com/help/matlab/ref/height.html
Image Analyst
2016 年 10 月 16 日
height() doesn't work on matrices -- it only works on tables.
morteza HEIDARI
2017 年 8 月 15 日
編集済み: morteza HEIDARI
2017 年 8 月 15 日
If for example your matrix is A, you can use : size(A,1) for number of rows. size(A,2) for number of columns. Also there are some other ways like : length ( A(:,1) ) for number of rows.
採用された回答
その他の回答 (5 件)
Ashutosh Kumar
2016 年 7 月 22 日
8 投票
length(A) gives you maximum out of the matrix made by calling the size,so it doesn't give you column(A) and for calling column(A) you need size(A,2) and for row you need size(A,1)...like suppose you have a 5*4 matrix then length(A) will give you 5 number of rows not 4...Hope that will help others I myself used length(A) and ended up making a wrong code and took me 2 hours to do it right
Image Analyst
2011 年 11 月 7 日
For a 2D matrix:
[rows columns] = size(array2D);
or, in general,
sizeOfMatrix = size(yourMatrix);
Thulitha Theekshana
2019 年 7 月 17 日
2 投票
I think the best way is to use size(x,y) function.
ex: if you want to get the height, size(matrix_name, 1). Here the second variable denotes the dimensioin you need to measure. From one it means the number of rows or the first dimension. From 2 it means the number of columns or the length. So I think you get the idea,
Gaganjyoti Baishya
2020 年 6 月 20 日
0 投票
It's simple. You can see the size of the first column, that will be the rows in matrix.
rows = size(myMatrix, 1); % first row length
Anurag Pratap Singh
2020 年 6 月 25 日
0 投票
Hi Rakesh
For counting the number of rows in a matrix you can use the size funtction and pass your matrix in it
[NumRows NumCols]=size(your_matrix);
The first output is the Number of rows .
Thank you
カテゴリ
ヘルプ センター および File Exchange で Shifting and Sorting Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!