フィルターのクリア

I am creating a GUI to run a code and want to import some input parameters from excel through GUI and transfer the same to the main .m file

2 ビュー (過去 30 日間)
GUI
  2 件のコメント
Ingrid
Ingrid 2015 年 6 月 9 日
and what is the question? what have you tried and were are you stuck?
vandana
vandana 2015 年 6 月 10 日
編集済み: Walter Roberson 2015 年 6 月 10 日
I want to pass input parameters from GUI to .m file
for exp.
I am taking bed_height as input in GUI and passing it to the .m file as bed_height1.
taking input in GUI as
bed_Height=str2num(get(hObject,'String'));
if(isempty(bed_Height))
set(hObject,'String','0')
guidata(hObject,handles);
data = getappdata(gcbf, 'metricdata');
data.bed_Height = bed_Height;
setappdata(gcbf, 'metricdata', data);
end
and passing it to .m file as
bed_height = data.bed_Height;
The problem is code is not giving any error but keeps running. how to pass inputs from GUI to .m file

サインインしてコメントする。

採用された回答

vandana
vandana 2015 年 6 月 17 日
This problem is resolved
Thanks

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by