Delimiter must be a string (textscan R2010b)

1 Ansicht (letzte 30 Tage)
joeDiHare
joeDiHare am 15 Okt. 2013
Kommentiert: Walter Roberson am 18 Okt. 2013
The following code works on R2013a
str = textscan('is it a version issue, or it is not.','%s','Delimiter',{' ',',','.'});
but it does not on R2010b, where I receive the following error:
Delimiter must be a string.
Any solution to this? Can you confirm it is a version issue?

Akzeptierte Antwort

Jan
Jan am 15 Okt. 2013
What about:
str = textscan('is it a version issue, or it is not.', '%s', 'Delimiter', ' ,.');
  2 Kommentare
joeDiHare
joeDiHare am 18 Okt. 2013
Yes, this works, Thanks. I wonder why the same code does not work on different MATLAB versions.
Walter Roberson
Walter Roberson am 18 Okt. 2013
When something works on a newer version but not an older, the first suspicion should be that a routine was enhanced between the two versions.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by