Difficulty with nested loop and arrays

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.

 采纳的回答

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 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by