Why cant I create a function in MatLab student version?
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (1)
per isakson
el 6 de Sept. de 2014
Editada: per isakson
el 7 de Sept. de 2014
0 votos
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
Categorías
Más información sobre Adding custom doc en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!