writeNmzData(mat, nmzType)
i1 : nmzFilename="example"; -- to keep the files
i2 : mat=matrix({{1,2,3},{4,5,6},{7,8,10}}) o2 = | 1 2 3 | | 4 5 6 | | 7 8 10 | 3 3 o2 : Matrix ZZ <-- ZZ
i3 : writeNmzData(mat,"normalization") o3 = example.in o3 : File
i4 : get ("example.in") o4 = 3 3 1 2 3 4 5 6 7 8 10 normalization
i5 : rmNmzFiles();