Tim
Tim

Reputation: 61

Load any file type into matlab

I have a matlab GUI....I'd like to load ANY file type(doc,txt,dat,xls) into matlab as a matrix through the GUI...I'd appreciate any help I can get!!

Upvotes: 1

Views: 2388

Answers (1)

TheCodeArtist
TheCodeArtist

Reputation: 22497

DOC, XLS, DAT to txt


As you might have realised by now, .doc are not plain-text. AFAIK, Matlab doesn't have any method to natively read these files. Hence, i suggest you do the following:

GoodLUCK!!

Upvotes: 1

Related Questions