How to give the total amount of row from a matrix as a value?

조회 수: 1 (최근 30일)
Emerson De Souza
Emerson De Souza 2011년 3월 30일
I need to define the total amount of row of a matrix as a variable
and don't how to extract this number.
For example, let
M=
1 2
2 4
3 6
4 8
5 10
In this case the row number would be 5.
I thought there would be a command such as
row(M)
but did not work.
Hopefully someone knows how to solve this
Thank you for your help
Emerson

채택된 답변

Matt Fig
Matt Fig 2011년 3월 30일
size(M,1) % The number or rows of an array.
size(M,2) % The number of columns of an array.
also,
S = size(M);
S(1) % The same as size(M,1)
S(2) % The same as size(M,2)
In general,
A = rand(4,5,2,2);
S = size(A)
notice the connection between S and the argument to RAND.
  댓글 수: 1
Emerson De Souza
Emerson De Souza 2011년 3월 30일
Hi Matt Fig,
thank you again for your fast reply.
That was all what I needed.
I'm working tonight, may
be you will find more questions.
Or, I wish you a nice night
Emerson

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Teja Muppirala
Teja Muppirala 2011년 3월 30일

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by