getting the variable size value

I have a variable of size x*y .what matlab command is used to get the x value.

 Akzeptierte Antwort

Weitere Antworten (1)

Ned Gulley
Ned Gulley am 14 Jun. 2011

0 Stimmen

To find the size, use size.
[m,n] = size(X)
m = size(X,dim)
So to find the number of rows, you can say
numRows = size(X,1)

1 Kommentar

ramakrishna bathini
ramakrishna bathini am 14 Jun. 2011
thanks for the reply a=size(X,1) is the command i was looking for...

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Encryption / Cryptography finden Sie in Hilfe-Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by