WriteCSX ======== ```{function} WriteCSX(filename, CSX) ``` Full definition: ```{code-block} matlab function WriteCSX(filename, CSX) ``` Write a CSX structure to an XML file. This is a convenience wrapper around struct_2_xml for writing CSXCAD structures created with InitCSX and the Add*/Define* functions. arguments: filename -- output file name, e.g. 'my_structure.xml' CSX -- CSXCAD structure as returned by InitCSX example: CSX = InitCSX(); CSX = AddMetal(CSX, 'copper'); CSX = AddBox(CSX, 'copper', 10, [-1 -1 -1], [1 1 1]); WriteCSX('my_structure.xml', CSX); See also InitCSX, DefineRectGrid, AddMetal, AddMaterial ----------------------- author: Thorsten Liebig