Problem 662. Vectorize the digits of an Integer
Create a vector of length N for an integer of N digits.
x = 123045;
x_vec = [1 2 3 0 4 5];
I happened upon a trick to do this.
I do not know why or how the trick works.
I'd like int2vec to be a standard conversion function
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers328
Suggested Problems
-
Return a list sorted by number of occurrences
2839 Solvers
-
Get the area codes from a list of phone numbers
1068 Solvers
-
Getting the absolute index from a matrix
251 Solvers
-
Create a vector whose elements depend on the previous element
748 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
390 Solvers
More from this Author308
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!