comparison general/fileutils/write.m @ 4:e44f49929e56

Adding reorganised general toolbox, now in several subdirectories.
author samer
date Sat, 12 Jan 2013 19:21:22 +0000
parents
children 3ba80c9914ff
comparison
equal deleted inserted replaced
3:3f77126f7b5f 4:e44f49929e56
1 function write(X,path)
2 % write - Write matrix as ascii text file
3 %
4 % write :: matrix, path -> action unit.
5
6 save('-ascii','-double',path,'X');
7
8