Info
此问题已关闭。 请重新打开它进行编辑或回答。
How to: Handling between functions
1 次查看(过去 30 天)
显示 更早的评论
I want to select a certain file then use that file for calculation.
Currently I constantly need to select it for every calculation;
[filename, pathname] = uigetfile({'*.xls'},'File Selector');
[num, txt]=xlsread(filename);
what I want is, select file in:
function OpenMenuItem_Callback(hObject, eventdata, handles)
[filename, pathname] = uigetfile({'*.xls'},'File Selector');
then use for example the 'filename' in a different function:
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
axes(handles.axes1);
cla;
popup_sel_index = get(handles.popupmenu1, 'Value');
switch popup_sel_index
case 1
how do i call the previous selected filename to this function?
0 个评论
回答(1 个)
Jan
2012-12-17
编辑:Jan
2012-12-17
You can store the file name for later access:
[filename, pathname] = uigetfile({'*.xls'},'File Selector');
[num, txt]=xlsread(filename);
handles = guidata(FigureHandle); % If not done before
handles.File = fullfile(pathname, filename); % Prefer full filenames
guidata(FigureHandle, handles);
...
function pushbutton1_Callback(hObject, eventdata, handles)
handles = guidata(hObject);
disp(handles.File)
This topic has been discussen frequently, such that searching in the forum will reveal other examples. Another good point to start from are Matt Fig's 41 GUI examples.
2 个评论
Jan
2012-12-17
[Moved from Answer section to Comment section]:
Matlab newbie has written:
I tried your code but I dont get it. Doesnt work.
I want to get that filename including data in the function pushbutton.
Jan
2012-12-17
@Matlab newbie: Please post comments in the comment section. Thanks.
"It does not work" is not detailed enough to suggest an improvement. If you want to store the data in addition, simply do this.
[num, txt]=xlsread(filename);
handles.FileData = num;
It is exactly the same method as for the file name.
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!