writem:

Syntax:	writem ( "filename" , A )

Description:

	Writem is the counterpart to readm(). Writem writes the matrix
	A to the file denoted by the 1st argument in a generic format.
	
	The format used is:

	line 1:		value[1;1]    ... value[1;ncol] \n
	line nrow:	value[nrow;1] ... value[nrow;ncol] \n

	Writem will write real and complex numeric matrices, as well
	as string matrices even though readm can only read real numeric
	matrices. 

	Writem does not close the file after writing A. The file is
	left open for further writes if necessary. Close can be called
	to explicitly close the file.

See Also: close, getline, open, readb, readm, write, writeb
