Hi can any one help me in dealing with strings in MATLAB. For example, the string
A = \'A good looking boy\'
how can we store these individual
The most intuitive way would be using strsplit
C = strsplit(A,' ')
However as it is not available in my version I suppose this is only a builtin function in matlab 2013a and above. You can find the documentation here.
If you are using an older version of matlab, you can also choose to get this File Exchange solution, which basically does the same.