Possible Duplicate:
convert string to number array in matlab
I have a vector y including values '1' '2' '3' char values and I want to convert it to a corresponding integer vector. If I used str2num it gives 49 50 51 like numbers. How could I do it ?
49 50 51back from str2num? Something doesn't seem right here. – s.bandara Jan 3 at 22:03'123'– Ben Voigt Jan 3 at 22:21str2numreturn those? – s.bandara Jan 3 at 22:23char(['1' '2' '3'])won't give the ascii values, and then one can just useintc = int32(str2num(c))– natan Jan 3 at 22:23