Import same class globally inside functions file

2 次查看(过去 30 天)
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?

回答(1 个)

Daniel Shub
Daniel Shub 2011-10-17
I don't think you can. I asked a related question a few months ago:
Unfortunately, it hasn't gotten any answers :(

类别

Help CenterFile Exchange 中查找有关 Structured Data and XML Documents 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by