フィルターのクリア

for loop for reading numbers from a matrix in each row

9 ビュー (過去 30 日間)
Far mah
Far mah 2019 年 11 月 20 日
コメント済み: Far mah 2019 年 11 月 20 日
Hello
I need to go through a matrix and reach each number row by row. so I think I need a for loop to give me the number first the ones in the first row 1,2,4. then go through the other row and read 3,4,5. these numbers will be used in another statement later with this order.
a=
1 2 4
3 4 5
5 6 2
any help is appreciated !

採用された回答

Erivelton Gualter
Erivelton Gualter 2019 年 11 月 20 日
% Matrix a
a =[1 2 4;
3 4 5;
5 6 2]
% Get size of a
[n, m] = size(a);
% Run throung 1 to number of rows
for i=1:n
a(i,:) % Print all values for the current row
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by