Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question
Could you explain how you get 49 50 51 back from str2num? Something doesn't seem right here. – s.bandara Jan 3 at 22:03
@s.bandara: Seems right to me. Those are the ASCII codes for '123' – Ben Voigt Jan 3 at 22:21
But why would str2num return those? – s.bandara Jan 3 at 22:23
Because char(['1' '2' '3']) won't give the ascii values, and then one can just use intc = int32(str2num(c)) – natan Jan 3 at 22:23

marked as duplicate by Ben Voigt, natan, Jonas, Linger, brenjt Jan 4 at 4:35

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 4 down vote accepted
y - '0'

Subtracts the ASCII value for '0' from each vector element, taking advantage of the fact that the ASCII values for digits are contiguous.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.