view general/fileutils/write.m @ 9:45aaf9b2d7b0

Moved high-order sequence/list functions to @cell class.
author samer
date Mon, 14 Jan 2013 15:49:04 +0000
parents e44f49929e56
children 3ba80c9914ff
line wrap: on
line source
function write(X,path)
% write - Write matrix as ascii text file
%
% write :: matrix, path -> action unit.

save('-ascii','-double',path,'X');