Convert the contents of each fields into a string.
Example with an input structure s with 2 fields :
s.age = '33' s.prenom ='aurélien'
The output will be the string of size 1*11 :
str =
33 aurélien
which is the same of typing str = ['33',10,'aurélien']
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers219
Suggested Problems
-
Find relatively common elements in matrix rows
2151 Solvers
-
How to find the position of an element in a vector without using the find function
2815 Solvers
-
Rotate input square matrix 90 degrees CCW without rot90
683 Solvers
-
Find out missing number from a vector of 9 elements
322 Solvers
-
Return fibonacci sequence do not use loop and condition
855 Solvers
More from this Author30
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Additional test cases have been added.