У меня есть графический интерфейс Matlab, такой как: кнопка запуска, кнопка обновления и текстовое поле редактирования.Перенос данных с объекта кнопочной панели на внешнюю функцию [Учитывая, что функция запущена]
function varargout = Main_function(varargin)
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @Main_function_OpeningFcn, ...
'gui_OutputFcn', @Main_function_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before encdecgui is made visible.
function encdecgui_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to encdecgui (see VARARGIN)
% Choose default command line output for encdecgui
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes encdecgui wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = encdecgui_OutputFcn(hObject, eventdata, handles)
% varargout cell array for returning output args (see VARARGOUT);
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
% --- Executes on button press in pb1.
function pb1_Callback(hObject, eventdata, handles)
% hObject handle to pb1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% if (mfilename(external_prog) == 0)
external_script
% else
% set(handles.pb1,'enable','off');
% end
% --- Executes on button press in pb2.
function pb2_Callback(hObject, eventdata, handles)
% hObject handle to pb2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
mydata = str2double(get(handles.edit1,'string'));
%Update mydata to external_prog's while loop
function edit1_Callback(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit1 as text
% str2double(get(hObject,'String')) returns contents of edit1 as a double
% --- Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
% --- Executes on slider movement.
function slider1_Callback(hObject, eventdata, handles)
% hObject handle to slider1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'Value') returns position of slider
% get(hObject,'Min') and get(hObject,'Max') to determine range of slider
% --- Executes during object creation, after setting all properties.
function slider1_CreateFcn(hObject, eventdata, handles)
% hObject handle to slider1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: slider controls usually have a light gray background.
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor',[.9 .9 .9]);
end
Пример external_prog
function k = myprog(i)
%prompt = 'Please enter a value to begin the count';
%i = input(prompt);
i = mydata;
while(i < 100000)
clc
i = i + 1;
k = i + 2
tic;
toc;
end
Рассмотрим выше функция вызывается из сценария, как этот
%scriptname: external_script
myprog
Теперь проблема:
1. I will open the GUI
2. Press Start to start the script
3. Input number into text editor [Now the external function is running]
4. Press update to take the edit text data into the while loop of the external function.
Стадию 4, как ca Я это делаю? Как я могу просто взять данные в цикл while внутри функции [Не поверх функции, но внутри цикла while при ее зацикливании] при нажатии кнопки из графического интерфейса?
У кого-нибудь есть идея? Поделись, пожалуйста. Спасибо.
EDIT: **** ПРИМЕЧАНИЕ **** -Мой MyProg ВЫШЕ фиктивная ПРОГРАММА, НЕ СЧИТАЯ MyProg Я просто хочу «PASS данных из графического интерфейса текстового редактора INTO A WHILE LOOP ВНУТРИ функции внешней».
Я не понимаю, как 'mydata' влияет на вызов функции' myprog'. О каких тестовых данных вы говорите в цикле 'while'? –
Как я уже говорил, цикл while делает много вещей внутри. Все, что я пытаюсь сделать, это передать эту «mydata» в цикл while. и этот цикл while помещается внутри функции, которая является внешней по отношению к файлу .m-файла GUI. – statisticalbeginner
@ CST-Link Извините за путаницу, цикл while представлен выше, например, здесь. Реальный цикл while, который у меня есть, действительно большой и который вызывает десятитысячные вызовы для файлов функций enternal для выполнения вычислений. – statisticalbeginner