I have a <20x1> cell array and each of them stores some data in the form of a string (as it appears to me!!!). I want to access each element of the cell as an individual string and split is in words.
The cell array I have is <20x1> cell array and to access each element as a cell I am using a for loop.
for i=1:20
line=newline{i}
end
It shows me a all the elements within the array. Now since line is a string, I apply strsplit function to retrieve the words in the string.
for i=1:20
words(i,:)=strsplit(line)
end
This gives me an error message :
??? Undefined function or method 'strsplit' for input
arguments of type 'char'.
Error in ==> chk at 15
words=strsplit(newline{i})
can anyone explain me where I am wrong? Any help will be appreciated. Thanks in advance.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…