Why am I getting this error?
10 次查看(过去 30 天)
显示 更早的评论
When i try to use my app3 and send this function to it, I get this error (see the attached doc)
Can anybody please tell me how I can fix the issue? I will be very thankful. :)
0 个评论
回答(1 个)
dpb
2023-4-8
移动:dpb
2023-4-8
Very difficult to debug stuff that have to download to see -- going forward put the pertinent lines of code in the Q? body and format with the "Code" button...
But, the one that can open in the browser window tells the story in the error message -- it says "Input A of class cell and Input B of class double" -- so in the code line
if all(ismember(result),[1 2 3])
the variable result must be a cell array and we can see the array of doubles for B.
So, dereference the content of result
if all(ismember(result{:}),[1 2 3])
(or don't create it as a cell to begin with).
2 个评论
dpb
2023-4-8
Would need to see the pertinent code itself as said...folks aren't likely going to take the time to download and try to look at a whole app file.
Logical addressing with ismember or just the indices themselves is a likely solution, the above if construct will only be true if all of the elements 1:3 are in the result vector so that may not be what you're really looking for...provide enough context in the question body itself to explain the problem and the desired result -- and that won't take the entire app code, just the specific callback function.
另请参阅
类别
在 Help Center 和 File 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!