uigetfile, load m-file variables into workspace
조회 수: 18 (최근 30일)
이전 댓글 표시
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
채택된 답변
Image Analyst
2016년 12월 17일
편집: Image Analyst
2017년 1월 2일
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
Image Analyst
2017년 1월 2일
Sorry - I had it reversed. Put the filename first and the folder second:
[baseFileName, folder] = uigetfile('*.mat');
I'll correct it above too.
추가 답변 (1개)
Les Beckham
2016년 12월 17일
편집: Les Beckham
2016년 12월 17일
.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
Image Analyst
2016년 12월 18일
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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!