uigetfile, load m-file variables into workspace
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
evalin is the worst way of passing data between workspaces:
and evalin, like eval, is slow and buggy:
Much faster and more robust would be to load the data into a structure, and and use nested functions to pass the data between the workspaces.
Accepted Answer
More Answers (1)
Les Beckham
on 17 Dec 2016
Edited: Les Beckham
on 17 Dec 2016
1 vote
.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.
Jan w
on 2 Jan 2017
Categories
Find more on Data Import and Export 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!