How do you append a vector to another vector within a loop?

I calculate a vector within a for loop and wish to append all the vectors that I calculate in that loop together. How do I do this efficiently?

 Accepted Answer

The efficient way is not to do that. Use indexing instead. If the vectors are not equal length you can put them in a cell array first and then use this:
out=vertcat(out{:});% or horzcat

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products

Release

R2021b

Asked:

on 29 Mar 2022

Answered:

Rik
on 29 Mar 2022

Community Treasure Hunt

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

Start Hunting!