Solved from MATLAB's help:
command = 'tftp -i 192.168.178.100 get dmafiles-2';
status = system(command)
Downloads the file to directory.
Too bad MATLAB is essensially locked in waiting until the command finishes, i.e. I can't do anything else while the files are transfering.
