using nested loop function to create a matrix
Show older comments
Hi everyone i'm stuck on something that's probably quite simple, wondering if someone can lend a hand
using:
for slowIndex = 1:s
for fastindex = 1:s
H(slowIndex,fastIndex) = movavg(eurUSDClose,'exponential',slowIndex);
end
end
I took this from the MATLAB help section and am trying to amend it for what i need, can some one tell me what I must add to get the loop to run through the fastIndex as well? The end resulty should be a matrix with s number of rows and s number of colums. Eventually fastIndex and slowIndex will contain different values i'm just tryng to get my head around the basics as this stage.
Accepted Answer
More Answers (0)
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!