Can I store row numbers of a matrix in a column without using any loop?
12 ビュー (過去 30 日間)
古いコメントを表示
How will I store the first column of a matrix as its corresponding row number without using a loop. That is, the first column for a 3x3 matrix as [1 . .;2 . .;3 . .].
2 件のコメント
Aquatris
2018 年 6 月 29 日
You mean something like this;
A=[1 5 6; 2 7 8;3 9 0];
B = A(:,1); % this will make B = [1;2;3]
採用された回答
Nithin Banka
2018 年 6 月 29 日
a = magic(3);
a(:, 1) = [1:3]; % This will store the row index in the first column of 'a'
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!