indexing entry of a matrix result

1 回表示 (過去 30 日間)
Viesturs Veckalns
Viesturs Veckalns 2017 年 10 月 16 日
編集済み: Viesturs Veckalns 2017 年 10 月 16 日
A is an MxN matrix. To get the number of columns of A I can do the following:
s = size(A);
ncol = s(2);
How can I construct a direct expression avoiding the intermediary variable s?

採用された回答

Cedric
Cedric 2017 年 10 月 16 日
[nRows, nCols] = size( A ) ;
if you don't need nRows:
[~, nCols] = size( A ) ;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by