Tagged Questions
2
votes
3answers
611 views
double string conversion and locale
A common international issue is the conversion of double values represented in strings.
These stuff is found in a lot of areas.
Starting with csv files which are either called
comma separated
or
...
0
votes
3answers
106 views
Convert decimal number to vector
In matlab I want to convert this:
12345.6788993442355456789
into a vector
[1 2 3 4 5 6 7 8 8 9 9 3 4 4 2 3 5 5 4 5 6 7 8 9]
I have found several solutions to convert a integer into a vector ...