undefined function in GUI
显示 更早的评论
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 个评论
Joseph Cheng
2021-6-15
it might be more helpful to show the line of code which this specifically specifies. are you using a function multiply?
Lim Xiao Hui
2021-6-15
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
2021-6-15
回答(1 个)
Kishan Dhakan
2021-6-16
0 个投票
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 个评论
Rik
2021-6-16
There are many reasons to define your custom functions in a separate file. One of those is that you might have written a function that does a specific task, and you want to do that in your app AND somewhere else.
Can you image the nightmare it would be if I had to remember every place I used a function like my readfile function in case I have an update for it?
You should only put functions only inside the app if they are actually specific to that app.
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
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
类别
在 帮助中心 和 File Exchange 中查找有关 Manage Products 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
