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 CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by