undefined function in GUI

조회 수: 2 (최근 30일)
Lim Xiao Hui
Lim Xiao Hui 2021년 6월 15일
댓글: Rik 2021년 6월 16일
Hello, can i ask why when i write code for GUI, it show
Undefined function 'multiply' for input arguments of type 'double'.?
Thank you.
  댓글 수: 4
Geoff Hayes
Geoff Hayes 2021년 6월 15일
Lim - is multiply a function that you have written because I can't find it in the MATLAB documentation? If it is a custom function (either yours or perhaps from the File Exchange) then the error message is possibly telling you that the function cannot be found along the MATLAB search path. Or you are trying to call a function that doesn't exist anywhere.
Lim Xiao Hui
Lim Xiao Hui 2021년 6월 15일
okok thank you!

댓글을 달려면 로그인하십시오.

답변 (1개)

Kishan Dhakan
Kishan Dhakan 2021년 6월 16일
If you're using MATLAB app designer, it will be easier if you click the 'add a function' button and define your multiply there itself (I see no reason to do it in a separate script). Note: If you add it as a private method, use app.multiply() everywhere.
  댓글 수: 3
Kishan Dhakan
Kishan Dhakan 2021년 6월 16일
편집: Kishan Dhakan 2021년 6월 16일
Rik, accepted. I meant I see no reason for this 'multiply' specifically. As '*' would do the multiplication in general anywhere, I assumed this function is specific to the app.
Rik
Rik 2021년 6월 16일
Given that you only know the name, it would be a bit odd to assume the functionality is the exact same as *.
Maybe this is what that function does:
function af=multiply(x,y)
af=@(c) x*y + c;
end

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by