New to matlab and I need some help.
I need to create a .mat file , using matObj or save(), that has some information that will be passed from some variable. Lets say that variable x = 1,2,3,4,5
1|2|3|4|5|
Then I need to save that in test.mat
Then I need to load that file and save something like,
6|7|8|9|10|
So I get
1|2|3|4|5|
6|7|8|9|10|
and so on.
So every time I save it goes to a new row. The numbers that go inside they are not random the above numbers are just there to make things simple to see.
Can someone help me out.
saveandload, experiment a bit on your own, and return here when you get stuck. One of Matlab's strengths is its suitability for prototyping, which is just a fancy word for messing around until you get it right. You are very unlikely to do any damage to anything messing around, so dive in.