I have a certain cell of size 400x1. It basically consists of numbers in the form of string. I mean when I do
mycell{1}
it gives result '1'
So you can see the number 1 is in the form of string. How can I convert this into a numeric array?
|
I have a certain cell of size 400x1. It basically consists of numbers in the form of string. I mean when I do
it gives result So you can see the number 1 is in the form of string. How can I convert this into a numeric array? |
||||
|
|
|
Like this if the
... or like this if the size is 1x400
However, this will cause problems if any of your strings contain a different number of characters, i.e.
If you have a case like this,
...seems to handle this ok as mentioned in the other answer! |
||||
|
|
Provided that you have an array of things that look like doubles:
If you have something that doesn't look like a double, you'll get a
|
||||
|
|