comparison m-toolbox/classes/+utils/@xml/getSym.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1
2
3 function str = getSym(node)
4
5 % Get node content
6 str = utils.xml.mchar(node.getTextContent());
7 % Convert to 'sym'
8 str = sym(str);
9
10 end
11