How do I create and store data into a new row after every loop?

6 次查看(过去 30 天)
For example:
I am trying to update the old variable matrix but I am getting an error
f = [1 2 3 4];
a = [1 2 3 4 5 6];
old = 0;
for i = 1:length(a)
new = f.*a(i);
old(:,i) = new;
end
I want an old matrix with these values
{1 2 3 4;2 4 6 8;3 6 9 12;4 8 12 16;5 10 15 20; 6 12 18 24}
thank you

采纳的回答

Walter Roberson
Walter Roberson 2017-12-23
To deliberately grow the old matrix, either initialize
old = zeros(length(f),0);
or else do not initialize old at all. With what you are doing now, you are initializing old as having only one row, but then trying to write multiple rows to it.
More efficient would be to initialize the entire matrix
old = zeros(length(f), length(a));
This would not grow the matrix as you went: it would start it out as the proper size.
  3 个评论
Walter Roberson
Walter Roberson 2017-12-23
To get that error, you must be using a very old MATLAB, such as from 2009.
Try
old(:,i) = new .';
Jaydeep Dutta
Jaydeep Dutta 2017-12-23
I should have mentioned earlier..I'm currently using a Matlab v6.1 My apologies and thats a lesson learned Thank you very much :)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by