How do we store the results of a loop vertically?
2 views (last 30 days)
Show older comments
Wolfgang McCormack
on 10 Mar 2021
Commented: Adam Danz
on 10 Mar 2021
Hi everyone,
Is this a correct way to store the values of a loop vertically in an excel file?
CompiledResults(:,i) = Output
also, what is the difference between this and store option?
0 Comments
Accepted Answer
Adam Danz
on 10 Mar 2021
Edited: Adam Danz
on 10 Mar 2021
> Is this a correct way to store the values of a loop vertically in an excel file?
CompiledResults(:,i) = Output
Well, no. That appears to store values vertically within a variable named CompiledResults, in column i. Check out this page from the documentation on how to write to excel files.
> what is the difference between this and store option
Perhaps adding some more context would help, if this doesn't address your question.
2 Comments
Adam Danz
on 10 Mar 2021
Does the loop produce a scalar value (size 1x1) or a vector? The line that you have stores a vector but can easily store a scalar in row j using,
CompiledResults(j,i) = ___
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!