how to transfrer data in guide ?

조회 수: 1 (최근 30일)
Itzik Ben Shabat
Itzik Ben Shabat 2013년 1월 13일
Hi, I have built a UI in guide. I have created an "edit text" function. I wish to allow the user to insert a numeric value and have that value saved and reused in other functions in my program. the problem is that if the user does not insert a value an error occurs. how can i assign a default value (and have it usable in all functions in the program)? thanks

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 1월 13일
편집: Azzi Abdelmalek 2013년 1월 13일
In you opening function insert a code below:
set(handles.edit1,'string','YourDefaultValue')
Which functions? to read your value just use
YourValue= str2double(get(handles.edit1,'string'))
You can also use guidata to transfer your data
  댓글 수: 1
Itzik Ben Shabat
Itzik Ben Shabat 2013년 1월 13일
i tried guidata but for some reason it didnt save it... (i used it several times in my program and it worked fine but for this speceific application it didnt).
what you said worked, thanks

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by