Effacer les filtres
Effacer les filtres

Unrecognized function or variable

2 vues (au cours des 30 derniers jours)
Steve
Steve le 14 Déc 2020
Modifié(e) : Steve le 14 Déc 2020
a

Réponse acceptée

Daniel Pollard
Daniel Pollard le 14 Déc 2020
Sya is defined in the code body, but not in the function. Read up on the scope of a Matlab variable for more information.
To fix this, you need to somehow define Sya within the functions in which you want to use it. This could be explicitly, by adding the line
Sya = 25;
to the function, or implicitly, by making it an argument of the function. Another option is to make Sya a global variable, but I don't know enough to advise on that and it's easy to use bad practices when using global variables so I'd suggest one of the other options.

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by