basics - a more compact way to do this...?
1 回表示 (過去 30 日間)
古いコメントを表示
I have a size(x) function that gives answer: 1 23 (x is a vector with 23 points). I can take the second value like this
k=size(x)
k(2)
Is there a more immediate way to do this? in a single command, something like.. size(x)(2) ?
0 件のコメント
採用された回答
Sven
2011 年 11 月 14 日
The simplest method is:
k = size(x, 2)
The second argument of the "size" method is the dimension in which to query - in your case the 2nd dimension
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!