Enter same string in an array.
24 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Akashdeep Kaur
el 16 de Jul. de 2022
Comentada: Akashdeep Kaur
el 16 de Jul. de 2022
hello, I would like to enter same string in an array. like:
Array1=[a,a,a,a,a,a]
Thanks.
0 comentarios
Respuesta aceptada
Harshit Gupta
el 16 de Jul. de 2022
Hi, if your question is just about how to create an array of string, you can do it like this:
Array1 = ["a", "a", "a", "a", "a"]
Now if you want to repeat a single string multiple times to create an array, do it like this:
str = "a";
Array1 = repmat(str, 1, 5)
Refer to the documentation to know more: repmat
Hope this helps!
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!