How to set up the path for a tree class download from internet?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I downloaded a tree class from the web and put it under Matlab's main path. It works. But when I tried to make it into a package, say, +tree\@tree, It issues errors. So I typed import trees.*, and I can run some of it, but its source code does not know the path or the import trees.*.
Do I have to modify the source code to make it work under a package? I have been trying not to change the source code.
Thanks for any help.
Jennifer
1 comentario
Jayaram Theegala
el 14 de Ag. de 2017
What is the error that you are getting when you place the "tree" class inside a package? Also, when you are importing the package, you mentioned you can run some of it. What functions are you still not able to run and where is that function file located?
Respuestas (1)
Guillaume
el 14 de Ag. de 2017
Editada: Guillaume
el 14 de Ag. de 2017
Packages in matlab do not work like namespaces in any other language I know. In particular, functions and classes within a package are not automatically visible to other functions and classes in the same packages. They still have to be referred to by their full package name (or you have to import the package in each function that need other functions/classes).
It's a real pain, particularly if later on, you change the name of the package.
In brief, you can't just put a bunch of files under a +directory and expect it to work.
Personally, I've given up on packages, they've actually caused me more pain than they've solved.
Ver también
Categorías
Más información sobre Downloads en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!