Why am I getting this error?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
dpb
el 8 de Abr. de 2023
Movida: dpb
el 8 de Abr. de 2023
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 comentarios
dpb
el 8 de Abr. de 2023
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.
Ver también
Categorías
Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!