How to create a vector with the same string elements?
55 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
osminbas
el 19 de Abr. de 2012
Editada: Marco Gomez
el 6 de Jul. de 2023
Hello,
I am trying to create a vector with all the same string elements. When it is numeric, it is as easy as ones(10,1)*5, which gives a vector of "fives". How do you do the same thing with a string, say if I want a vector with all the elements of string 'hi'? Thank you!
0 comentarios
Respuesta aceptada
Sean de Wolski
el 19 de Abr. de 2012
repmat('hi',[1 5]);
?
2 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!