In MATLAB, I load an XML file docNode = xmlread('stuff.xml');. stuff.xml is the following:
<?xml version="1.0"?>
<rss version="2.0" xmlns:g="http://somesite.com">
<channel>
<title>Blah</title>
<link>http://www.blah.com</link>
<description>BLAH.COM </description>
<item>
<link>http://www.blah.com/page</link>
</item>
</channel>
</rss>
I'm trying to retrieve that string in <link> but it is proving to be quite tricky.. I'm reading this blog http://blogs.mathworks.com/desktop/2010/11/01/xml-and-matlab-navigating-a-tree/ but I still can't figure it out! Can someone chime in on how to get access to <link>? TIA!