I'm fairly new to matlab. I'm just started learning about nested loops and need some help. I have an array of random numbers and i need to create a nested loop to read the random data one by one by row and then columns and assign the data to a new variable. Can anyone help me with this? Thanks.

 채택된 답변

Jos (10584)
Jos (10584) 2016년 4월 21일

0 개 추천

for RowIndex = 1:...
for ColIndex = 1:...
CurrentValue = MyMatrix(RowIndex,ColIndex)
end
end
I leave it for you to figure out what should be at the ellipses. Hint:
help size

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2016년 4월 21일

답변:

2016년 4월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by