Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How to: Get file in different functions

2 visualizaciones (últimos 30 días)
Hello kity
Hello kity el 28 de Dic. de 2012
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Hi,
in this menu i select a file.
function OpenMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to OpenMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[filename, pathname] = uigetfile({'*.xls'},'File Selector');
i want that file(name) used in different m-files.
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)
popup_sel_index = get(handles.popupmenu1, 'Value');
how do i get filename here????
switch popup_sel_index
case 1
AnotherMfile
end
so lets say
function AnotherMfile
what to type here to get filename??
[num, txt]=xlsread(filename);
end

Respuestas (1)

Walter Roberson
Walter Roberson el 28 de Dic. de 2012

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by