Import same class globally inside functions file
Mostrar comentarios más antiguos
I have a function file called getFeatures.m that looks like:
function [features] getFeatures()
% Import the XPath classes
import javax.xml.xpath.*
% other code
end
function [name] = getName()
% Import the XPath classes
import javax.xml.xpath.*
% other code
end
as you can see, both functions import xpath library, since I have a lot of functions that need to import that class how can I do this a single time?
Respuestas (1)
Daniel Shub
el 17 de Oct. de 2011
0 votos
I don't think you can. I asked a related question a few months ago:
Unfortunately, it hasn't gotten any answers :(
Categorías
Más información sobre Structured Data and XML Documents 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!