Load .mat file variables without overwriting current variables of the same name
Show older comments
I have variables x and y in my workspace. Now I'd like to load a .mat file that contains variables named x and y. For example,
x = 5;
y = 6;
load wind
How can I get variables x and y from wind.mat without overwriting my other variables named x and y. I want to do this without renaming my original x and y, and create wind_x and wind_y when loading wind.mat.
Accepted Answer
More Answers (0)
Categories
Find more on Variables 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!