필터 지우기
필터 지우기

How i recall a variable?

조회 수: 4 (최근 30일)
Nuno
Nuno 2015년 5월 20일
답변: Image Analyst 2015년 5월 20일
Hello everyone!
I am building a graphic interface in Matlab, and in starting window i select one value (1 or 0) and save it in a variable "plane". In code:
function Iniciar_Callback(iniObject, eventdata)
close figure 1
dname = uigetdir('C:\');
prompt = {'what is number?:'}; dlg_title = 'Window'; num_lines = 1; def = {'1 or 0'};
nomeR = inputdlg(prompt,dlg_title,num_lines,def);
nomeR=cell2mat(nomeR);
if nomeR=='1';
plane=1;
elseif nomeR=='0';
plane=0;
else
errordlg('Plano não valido','ATENÇÃO');
end
assignin('base','plane',plane);
% And i want call plane in next function
function Model_Callback(varObject, eventdata)
How i do? Big thanks

채택된 답변

Image Analyst
Image Analyst 2015년 5월 20일

추가 답변 (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