how to access variables from one function to another function?

13 Ansichten (letzte 30 Tage)
I have created GUI, I am trying to acess variable featureVector from one function to another function.
Kindly help me.
Here is my code of functions:
% --- Executes on button press in pushbutton4.
function pushbutton4_Callback(hObject, eventdata, handles)
featureVector = extractHOGFeatures(Img);
% --- Executes on button press in pushbutton5.
function pushbutton5_Callback(hObject, eventdata, handles)
Classifier=trainedClassifier;
Label=Classifier.predictFcn(featureVector);

Akzeptierte Antwort

Guillaume
Guillaume am 22 Dez. 2018
The simplest is to store your feature vector in handles.
% --- Executes on button press in pushbutton4.
function pushbutton4_Callback(hObject, eventdata, handles)
handles.featureVector = extractHOGFeatures(Img); %store feature vector in handles
guidata(hObject, handles); %and save handles
end
function pushbutton5_Callback(hObject, eventdata, handles)
Classifier=trainedClassifier;
Label=Classifier.predictFcn(handles.featureVector); %get feature vector from handles
...
end
  1 Kommentar
zeytun
zeytun am 17 Jan. 2021
How to do this same thing in the Appdesigner? I have a similar issue: in a first function I have a vector "I" (given by a Gaussian function), and I want to use/recall that vector in another function. It looks like simple
app.I = I
is not working.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Visual Exploration finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by