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!