how to input values in a 2D matrix using a nested for loop of size 5*5?

6 ビュー (過去 30 日間)
chan
chan 2015 年 12 月 3 日
編集済み: Thorsten 2015 年 12 月 3 日
how to input values in a 2-D matrix using a nested for loop of size 5*5?

採用された回答

Thorsten
Thorsten 2015 年 12 月 3 日
編集済み: Thorsten 2015 年 12 月 3 日
for i = 1:5
for j = 1:5
A(i,j) = input(sprintf('please enter value (%d, %d) >> ', i, j))
end
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