uigetfile, load m-file variables into workspace

조회 수: 13 (최근 30일)
Jan w
Jan w 2016년 12월 17일
편집: Image Analyst 2017년 1월 2일
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
Stephen23
Stephen23 2016년 12월 17일
편집: Stephen23 2016년 12월 17일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
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
Jan w
Jan w 2017년 1월 2일
I'm having problems loading the *.mat file.
[folder, baseFileName] = uigetfile('Eingabedatei.mat')
folder =
Eingabedatei.mat
fullFileName =
Eingabedatei.mat\C:\Users\User1\Desktop\...
When I check the condition "exist(fullFileName, 'file')" I get a false=[0]
What is wrong?
Image Analyst
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
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
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.
Jan w
Jan w 2017년 1월 2일
Since the user uses matlab I let them edit an *.m file that creates a *.mat file that then is used for further operations.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Variables에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by