Create an string array with strings having both char and numbers
Mostrar comentarios más antiguos
Could you help me in creating a string array with strings containing characters and numbers in a sorted manner
Eg:
I want to create a string array with strings {"Analysis_1", "Analysis_2", "Analysis_3", "Analysis_4", ......, "Analysis_n"}
The values of 'n' should be defined in way that it can be varied by the user.
Respuesta aceptada
Más respuestas (1)
n = 5;
S = "Analysis_" + (1:n)
You can also use implicit expansion to make an array if you so desired.
fruits = ["apple"; "banana"; "cherry"]
quantity = 1:4;
market = fruits + "_" + quantity
1 comentario
Vinay Killamsetty
el 12 de Jun. de 2021
Categorías
Más información sobre Operators and Elementary Operations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!