In MATLAB App designer,
I am trying to learn how to create a private function and use it in another callback function (let's say of a certain button).
I created the function, but I have trouble setting the parameters and calling it in the other callback function.
In C++ code,
int product (int num1, int num2)
{
int result;
result = num1*num2;
return result;
}
void another function()
{
int num1;
num1 = 2;
int num2;
num2 = 3;
int x = product(num1,num2);
return;
)
My MATLAB private function only computes 1 value (an array) and need to return this array when called.
Can someone please help?
Thank ypu

 Respuesta aceptada

Ameer Hamza
Ameer Hamza el 11 de Mayo de 2020

1 voto

Check the code in the attached app to see how to define and use private functions in App-designer.

2 comentarios

Adham Elkhouly
Adham Elkhouly el 11 de Mayo de 2020
Thank you so much
Ameer Hamza
Ameer Hamza el 11 de Mayo de 2020
I am glad to be of help.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Centro de ayuda y File Exchange.

Productos

Versión

R2019b

Etiquetas

Preguntada:

el 11 de Mayo de 2020

Comentada:

el 11 de Mayo de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by