Using functions in functions

1 次查看(过去 30 天)
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

采纳的回答

Ameer Hamza
Ameer Hamza 2020-5-11
Check the code in the attached app to see how to define and use private functions in App-designer.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by