indexing entry of a matrix result
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Viesturs Veckalns
am 16 Okt. 2017
Bearbeitet: Viesturs Veckalns
am 16 Okt. 2017
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?
0 Kommentare
Akzeptierte Antwort
Cedric
am 16 Okt. 2017
[nRows, nCols] = size( A ) ;
if you don't need nRows:
[~, nCols] = size( A ) ;
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!