Changing variables in Array

5 views (last 30 days)
Verena
Verena on 28 Nov 2013
Commented: Verena on 1 Dec 2013
Hello,
I want to creat an 2D Array with two rows and 7 columns. When this Array is full, I want the second account to replace the first one, the 3rd the second and so on.... The 7th should be replaced by a new account. Can you give me an Idea how to do this?
Best regards

Accepted Answer

Roger Stafford
Roger Stafford on 29 Nov 2013
I am guessing that by "account" here you actually mean "column". Is that correct? If so, with your 2D matrix called M and a new 2 x 1 "account" (column vector) called b, do this:
M = [M(:,2:end),b];
  1 Comment
Verena
Verena on 1 Dec 2013
Yes I mean column ( difficult to find the right word ;) ) Thank you! I think your answer helps me :)

Sign in to comment.

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!