繁体   English   中英

如何从MATLAB获取路径?

[英]How do I get the path from MATLAB?

我想在MATLAB中实现GUI环境。 我想使用“浏览器”按钮加载文件,然后将文件输入到要使用的代码中并输出。 救命。

% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(~, ~, 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)
[filename, pathname] = uigetfile({'*.txt'},'File Selector');
fullpathname = strcat(pathname, filename);
text = fileread(fullpathname);
set(handles.text2, 'String', fullpathname)


% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(~, ~, handles)
% hObject    handle to pushbutton2 (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({'*.txt'},'File Selector');
fullpathname = strcat(pathname, filename);
text = fileread(fullpathname);
set(handles.text3, 'String', fullpathname)


% --- Executes on button press in pushbutton3.
function pushbutton3_Callback(~, ~, handles)
% hObject    handle to pushbutton3 (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({'*.txt'},'File Selector');
fullpathname = strcat(pathname, filename);
text = fileread(fullpathname);
set(handles.text4, 'String', fullpathname)

D1=load('text2');
D1=D1';
D1=reshape(D1,l1*l2,1);

%% D2,D3 매트릭스 direct데이터 파일

D2=load('text3');
D3=load('text4');

你用过

  set(handles.text2, 'String', fullpathname)

因此在需要名称的例程中,您可以使用

 get(handles.text2, 'String')

您的所有三个回调已经完全完成了您想做的事情:

  1. 当用户按下分配了回调之一的按钮时,他们将打开文件浏览器,用户可以在其中选择文件。
  2. 他们将路径保存在fullpathname变量中
  3. 他们将文本分配给句柄text2text3text4String属性。

因此,现在有几个原因导致此操作无法按预期工作的原因:

  • 您的回调函数均未分配给GUI的用户界面元素。 如果您在Matlab GUIDE功能中打开GUI,只需右键单击其中一个按钮并检查属性检查器,就​​可以简单地进行检查。 应该有一个看起来像这样的条目:

物业检查员的外观

  • 句柄text2text3text4存在。 因此Matlab不知道在哪里分配文本。 您可以使用上方菜单中的“对象”浏览器来获得所有元素的概述:

对象浏览器

  • fileread无法读取文件的内容。 您可以通过使用简单的非GUI脚本确保fileread在文件上正常工作来进行检查。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM