This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Author: voithos on so | |
## Url: https://stackoverflow.com/a/8319848/1329652 | |
function varargout = coltextread(fname, delim) | |
% Initialize the variable output argument | |
varargout = cell(nargout, 1); | |
% Initialize elements of the cell array to nested cell arrays | |
% This syntax is due to {:} producing a comma-separated | |
[varargout{:}] = deal(cell()); |
NewerOlder