Create cell array of numbers
41 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Steven Niggebrugge
el 16 de Dic. de 2019
Comentada: Fatemeh Sadeghihassanabadi
el 30 de Abr. de 2021
Hi,
how can i create a function that creates a cell array of number array 1:n, so the result is a cell array of string values.
so for example if i call that function s=f(1:10), it give me:
s = {'1','2','3','4','5','6','7','8','9','10'}
thanks so much!
0 comentarios
Respuesta aceptada
Guillaume
el 16 de Dic. de 2019
Editada: Guillaume
el 16 de Dic. de 2019
This is dead easy if you are happy using the newish string type instead of char vectors:
s = string(1:10)
You can convert that to a cell array of char vectors, but you may as well continue using strings as they're easier to work with.
s = cellstr(string(1:10)) %if a cell array of char vector is really desired
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!