Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
fid = fopen('data/data_file.csv');
all_messages = textscan(fid, format, 'delimiter', ',');

Returns:

error: 'textscan' undefined

How do you fix this?

share|improve this question
textscan(a,b,c,d) = 0 should work, but I doubt it is what you want. ;) – muntoo Dec 16 '11 at 2:33
Does fopen have default parameters ? Seems like fid is damaged, try fid = fopen("data/data_file.csv","r","ieee-l");. – Niloct Dec 16 '11 at 2:41
What version of Octave are you using? The textscan function was added in version 3.4.0, which was released in February 2011. – David Alber Dec 16 '11 at 5:15
3.2.4 so I guess that's why it didn't work... – B Seven Dec 16 '11 at 5:36

1 Answer

up vote 8 down vote accepted

Core answer

The textscan function was added to Octave in version 3.4.0, which was released in February 2011. Your best option, then, is to install a newer version of Octave. If, for some reason, that is not an option you could try using fscanf (as suggested here).

History

The textscan function is not mentioned in the new function list in the version 3.4 release news, but textscan.m is not present in the version 3.2.4 distribution.

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.

share|improve this answer
How? The "latest" version of the Windows installer is 3.2.4. – B Seven Dec 16 '11 at 19:51
1  
@BSeven From the Downloading Octave page there is a link to the Octave Forge for Windows binaries. On that page, currently, there is a link to a "Windows installer" that is for Octave 3.4.3. Readers from the future may see a different version. – David Alber Dec 18 '11 at 10:23
Ha! It was updated in the last 2 days! – B Seven Dec 19 '11 at 1:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.