How could I passing parameters from .m file to GUI
6 次查看(过去 30 天)
显示 更早的评论
I have a .m file that would get 11 different results in text. And I want to show those results in the GUI. I tried to pass the parameters into static text. but it seems not working. Could anyone help me?
This is my .m file's function
function [title1,title2,title3,title4,title5,title6,title7,title8,title9,title10,title11] = noOriginalImage
I tried to do such things like that, but it obvious not working.
function pushbutton4_Callback(title1,title2,title3,title4,title5,title6,title7,title8,title9,title10,title11,hObject, eventdata, handles)
% hObject handle to pushbutton4 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[title1,title2,title3,title4,title5,title6,title7,title8,title9,title10,title11] = noOriginallmage;
set(handles.text10,'string',title1,title2,title3,title4,title5,title6,title7,title8,title9,title10,title11);
Sorry about bad coding, I am a novice.
I have been tried to search relevant questions or video courses, but I could not find it or understand.
0 个评论
回答(2 个)
amin ya
2019-3-15
I don't understand your problem
If you are trying to print something use one of the following commands
fprintf()
disp()
If you are trying to make a GUI use this tutorial:
Rik
2019-3-24
You shouldn't change the function headers that GUIDE generates. The fact that your function is not in the same file doesn't matter as long as it is on your search path. Something like the function below should help you out.
function pushbutton4_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton4 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
%load variables from external function
[title1,title2,title3,title4,title5,title6,title7,title8,title9,title10,title11] = noOriginallmage;
%set the text10 field to the content of these variables
set(handles.text10,'string',{title1,title2,title3,title4,title5,title6,title7,title8,title9,title10,title11});
Or a lot easier to read:
function pushbutton4_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton4 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
%load variables from external function
titles=cell(1,11);
[titles{:}] = noOriginallmage;
%set the text10 field to the content of these variables
set(handles.text10,'string',titles);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Language Support 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!