Why cant I create a function in MatLab student version?
Ältere Kommentare anzeigen
When I try to create a function i keep getting this error Error: Function definitions are not permitted in this context.
Here is the code I wrote
function sum = myfirst(v,w)
then I get the mentioned error
Akzeptierte Antwort
Weitere Antworten (1)
per isakson
am 6 Sep. 2014
Bearbeitet: per isakson
am 7 Sep. 2014
0 Stimmen
Because function sum = myfirst(v,w) must be the first executable line of the m-file. Read Function Basics, Create functions, including anonymous, local, and nested functions
Kategorien
Mehr zu Adding custom doc finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!