I've got a bunch of values that are all assigned the same variable due to running through a for loop several times, so for example:
d = 3.44434 d = 2.4444 d = 2.7777
How do I put them all into a vector?
|
|
|
If you know the number of values beforehand, you can speed things up (if there are several elements) by preallocating. Code
If you don't know the number of elements before running the loop, Code
|
|||
|
|
|
If you need a loop for your operations, use Jacob's answer. Otherwise, if you're doing a relatively simple operation, you may be able to vectorize. For example:
The ./ .* and .^ operators are useful if you want to perform element-wise operations. |
|||
|
|
|
I made a video about this: http://blogs.mathworks.com/videos/2007/08/20/matlab-basics-video/ |
|||
|
|