fid = fopen('data/data_file.csv');
all_messages = textscan(fid, format, 'delimiter', ',');
Returns:
error: 'textscan' undefined
How do you fix this?
Returns:
How do you fix this? |
||||
Core answerThe HistoryThe It appears to have been added as a result of this ticket (scroll to the bottom of the ticket), which was created as a result of this request. |
|||||||||
|
textscan(a,b,c,d) = 0should work, but I doubt it is what you want. ;) – muntoo Dec 16 '11 at 2:33fopenhave default parameters ? Seems likefidis damaged, tryfid = fopen("data/data_file.csv","r","ieee-l");. – Niloct Dec 16 '11 at 2:41textscanfunction was added in version 3.4.0, which was released in February 2011. – David Alber Dec 16 '11 at 5:15