Is it possible to use 'assignin' to append data to an array in the base workspace?
9 views (last 30 days)
Show older comments
I am setting up a GUI where a plot is used to manually select data points. These data points are sent to the base workspace as an array named 'flagged' when the users click an 'export' button. The 'assignin' command is used to accomplish this. This all works fine when when used once. However, many times the users wants/needs to go through this process multiple times. In such cases, the 'flagged' array is overwritten each time. It is preferrable for us to keep all the data.
Does anybody know how to append data from a GUI to the base workspace using assignin or some other command?
Thank You.
0 Comments
Accepted Answer
Image Analyst
on 22 Nov 2023
You'd need to use eval to first get the current values of the variable into a new variable, say existingVar. Then make up your new data and append it then use assignin to send the new variable back into the base workspace:
% Create data.
v1 = [1,2,3];
% Put v into the base workspace.
assignin('base','v1', v1)
% Now make some new variable v2
v2 = [4,5,6];
% Retrieve existing v1
v1 = evalin('base', 'v1')
% Append v2 to v1 and put results in v1.
v1 = [v1, v2]
% Send it back to the base workspace.
assignin('base','v1', v1)
% Verify: double check that v1 is what we expect.
v1 = evalin('base', 'v1')
2 Comments
Image Analyst
on 27 Nov 2023
Yeah, if it's a table, you would have to use a semicolon instead of a comma
t1 = [t1; t2]
but they'd have to have the same number of columns and with the same column names or else it doesn't make sense. They can have different number of rows though.
More Answers (0)
See Also
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!