% Writes an Index to an XML file. % % Internal function that should never be called directly. % Use *xmlStore* instead. % % FORMAT xmlWriteIndex(fid, data) % % IN fid File descriptor % IN data Index % 2002-12-17 Created by Oliver Lemke. function xmlWriteIndex(fid, data) xmlWriteTag (fid, 'Index', []); fprintf (fid, "%d\n", data); xmlWriteCloseTag (fid, 'Index');