<< wfir_gui Cardio Vascular toolbox

Cardio Vascular toolbox >> Cardio Vascular toolbox > writeXmlExcel

writeXmlExcel

write excel xml file on any platform

Calling Sequence

writeXmlExcel(filename, M [, titleDocument [, authorDocument]]

Parameters

filename

output filename

M

Matrix of type integer, string, boolean or real.

titleDocument

worksheet Name, default 'Sheet1'.

authorDocument

author document, default ''.

Description

Writes data to an Excel xml file (2003) on any platform. compatible with excel and OOo calc.

Examples

M = eye(4,4);
writeXmlExcel(TMPDIR + "/eye_matrix.xml", M);

M = [%nan, -%inf; 1, %inf];
writeXmlExcel(TMPDIR + "/naninf_matrix.xml", M);

M = ['Hello' 'writeXmlExcel'; 'Allan CORNET', '2010'];
writeXmlExcel(TMPDIR + "/string_matrix.xml", M);

M = [%t, %f; %f, %t];
writeXmlExcel(TMPDIR + "/boolean_matrix.xml", M);

Author


Report an issue
<< wfir_gui Cardio Vascular toolbox