Iterate through a loop using the alphabet.

20 visualizaciones (últimos 30 días)
Joseph
Joseph el 5 de Oct. de 2011
Comentada: Alvaro Gaona el 12 de Ag. de 2018
Hello,
I am looking to loop through a few files names that differ only by one letter, i.e they go 001a, 001b, 001c etc.
What is the simplest way to put set the loop up, so that it changes the value of the letter each time.
For example ideally i want:
For x=a:z
filename = ['001' ,x '.txt']
Or something similar.
Can this be done?
Kind regards
Joe Harris
Apologies if the question isn't worded very well!

Respuesta aceptada

the cyclist
the cyclist el 5 de Oct. de 2011
Here's one way:
s = char(97:122) % Or just use: s = 'abcdefghijklmnopqrstuvwxyz';
for ns = 1:length(s)
filename = ['001',s(ns),'.txt']
end
  3 comentarios
Sean de Wolski
Sean de Wolski el 5 de Oct. de 2011
Also, 'a':'z'
will create the above string.
Alvaro Gaona
Alvaro Gaona el 12 de Ag. de 2018
Now it's easier.
for letter='a':'z'
filename = ['001', letter,'.txt']
end

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements 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!

Translated by