|
Contents | Previous | Next | Subchapters |
| Syntax |
write(file, matrix, max, separator)
|
| See Also | write(file, matrix) , read(file, mtype) |
D = {[1.1, 1.2, 1.3], [2.1, 2.2, 2.3]}
write("sep.dat", D, coldim(D), ";")
close
O-Matrix will create the file sep.dat in the
current working directory
which contains,
1.1;1.2;1.3
2.1;2.2;2.3