Suppose a vector x = [ 1 2 4 7] is given. You have to convert this vector into string number y = '1247'.
Examples
x = [ 1 3 5 6 ] y = '1356'
x = [ 2 5 7 23] y = '25723'
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers220
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2822 Solvers
-
Find out sum of all elements of given Matrix
540 Solvers
-
Sum the squares of numbers from 1 to n
261 Solvers
-
Write a code that will follow the equation y = x * (x + x) * x.
361 Solvers
-
622 Solvers
More from this Author3
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I added some extra tests.