I have a little problem. I know how to avoid it, but I'm not sure is the best.
String = textscan('Hello_World','%s','delimiter','_')
This returns a {1x1 cell} with a {2x1 cell} in it:
String =
{2x1 cell}
What I want requires an additional command:
String = String{1}
which yields what I want:
String =
'Hello'
'World'
I would be glad if anybody has a good tip.