function name

5 visualizaciones (últimos 30 días)
Richard
Richard el 5 de Mzo. de 2012
Why is it that a function does not work with some names? e.g. I named one of my functions magnuson(PathName) and the function would not work, it would return an error saying:
Undefined function 'magnuson' for input arguments of type 'char'.
Then after changing the name of the function to magnuson_LA(PathName) it worked perfectly. Why is this?

Respuesta aceptada

Oleg Komarov
Oleg Komarov el 5 de Mzo. de 2012
Usually that error comes when the function has been saved on path that MATLAB cannot reach.
Matlab checks for functions in the current directory and a saved list of paths.
To add a path to the search:
addpath('C:\...\')
I would recommend to read this guide: Making Files and Folders Accessible to MATLAB

Más respuestas (0)

Categorías

Más información sobre Search Path en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by