Array indices must be positive integers or logical values
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Help me please. An error occurs when starting the program. How do I fix it?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/724964/image.jpeg)
0 commentaires
Réponses (2)
Jan
le 30 Août 2021
I looks like this is a script. Then is shares the workspace variables with its caller. I guess, that you have created an array called "real" anywhere. Then real(Io) does not call the function real(), but uses the values of Io as indices.
Check this by:
which real
Using function avoids such confusions, because you can check the local code, if a variable with such a name is created.
Avoid using names of builtin functions for variables.
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!