Local functions are not working in MatLab R2022a
36 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jonne Klockars
le 9 Juin 2022
Modifié(e) : Walter Roberson
le 27 Août 2024
I'm trying to write local functions in the way instructed in this video: https://www.youtube.com/watch?v=f0zKcuP3Wc0&list=PLlvaivyRxHmdTvpNBe4gKWrOBrcuxhpsl&index=48, beginning at 5:50. When running the code below, my MatLab R2022a says Unrecognized function or variable 'mymean'. What am I missing here?
x = 1:10;
n = length(x);
avg = mymean(x,n)
function a = mymean(v,n)
a = sum(v)/n;
end
6 commentaires
Stephen23
le 9 Juin 2022
@Jonne Klockars: how are you running the script? Please show the exact code you use to run your file.
Réponse acceptée
Stephen23
le 9 Juin 2022
Modifié(e) : Stephen23
le 9 Juin 2022
"I select it all and press F9."
That will not work.
You need to run the script by calling it by name from the command line:
>> test
MATLAB is a bit more strict with function definitions than some younger languages around these days, where you can just define anything on the fly. Selecting function code and pressing F9 will not define the function and then let you call it. MATLAB simply does not work that way. You need to call the function or run the script that calls the function.
3 commentaires
Yu Li
le 27 Août 2024
some keyboard include a bottom "fn", when you accidently click that bottom, F9 not work. you need to press "fn" buttom agian to recover that.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Startup and Shutdown 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!