getting the variable size value
2 ビュー (過去 30 日間)
古いコメントを表示
I have a variable of size x*y .what matlab command is used to get the x value.
0 件のコメント
採用された回答
その他の回答 (1 件)
Ned Gulley
2011 年 6 月 14 日
[m,n] = size(X)
m = size(X,dim)
So to find the number of rows, you can say
numRows = size(X,1)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!