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
You can use the simple function textscan for that:
textscan
C = textscan(A,'%s');
C will be a cell array. This function is in Matlab at least since R14.