Swap number with a word
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi all,
I am wondering how I could swap a number in a vector with a word. I have a vector from 1 to 100 ( linspace(1,100) ) and am trying to replace every fourth number with a word "height". Any suggestion on how to do this?
Thanks.
0 comentarios
Respuesta aceptada
Birdman
el 7 de Mzo. de 2018
a=string(linspace(1,100));
a(4:4:end)=regexprep(a(4:4:end),'\d*','height')
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Migrate GUIDE Apps 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!