uigetfile, load m-file variables into workspace
17 views (last 30 days)
Show older comments
Hello,
I've been trying to load variables from a *.m file into my workspace with the following code provided by Support Team by clicking the pushbutton on my gui.
function profil_laden_Callback(hObject, eventdata, handles)
filename = uigetfile('*.mat');
command = sprintf('load(''%s'')', filename);
evalin('base', command);
But i get the error:
Error using load
Number of columns on line 3 of ASCII file Eingabe.m must be the same as previous lines.
My m file is a editable file for users, so they can put their values in. It is full of comments.
Thanks
1 Comment
Accepted Answer
Image Analyst
on 17 Dec 2016
Edited: Image Analyst
on 2 Jan 2017
Do it like this instead
[baseFileName, folder] = uigetfile('*.mat');
fullFileName = fullfile(folder, baseFileName);
if exist(fullFileName, 'file')
% Normal situation - they picked an existing file.
storedStructure = load(fullFileName);
% Now do something with storedStructure, like extract fields into new variables or whatever you want.
else
% Error: Would only get here if they typed in a name of a non-existant file
% instead of picking one from the folder.
warningMessage = sprintf('Warning: mat file does not exist:\n%s', fullFileName);
uiwait(errordlg(warningMessage));
return;
end
Note that the variables in a callback function are local. If you want them to be visible (in scope) outside that function you have to do something to make it so. For that, see the FAQ for a variety of ways: http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.28s.29.3F
2 Comments
Image Analyst
on 2 Jan 2017
Sorry - I had it reversed. Put the filename first and the folder second:
[baseFileName, folder] = uigetfile('*.mat');
I'll correct it above too.
More Answers (1)
Les Beckham
on 17 Dec 2016
Edited: Les Beckham
on 17 Dec 2016
.m files are used to store Matlab code - NOT data.
You can create data in your workspace by running an m file but not by loading it.
If you are just creating a text file with manually editable data in it, you should not use the .m (or .mat) extension -- it will just cause confusion. Perhaps just use .txt (or .csv if you are using comma delimiters).
You need to be careful when creating text data files so that each row has the same number of entries or it can get tricky to read the data. You will get errors like the one in your question.
Reading a text file is best done with importdata or similar, not load.
Please clarify what type of file you are really working with (provide a short example or the real file).
2 Comments
Image Analyst
on 18 Dec 2016
In the description he said "load variables from a *.m file" and "My m file is a editable file for users" but then in his code he asked the users to load a .mat file. So who knows what the real file type is. He needs to clarify this.
The code in my solution assumed the users pick a mat file which some MATLAB program created.
If users need to edit it in notepad or whatever, then it's best to use a plain/flat text file and use importdata like Les says.
See Also
Categories
Find more on Startup and Shutdown 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!