Hi I need to read data from .wfm files. Each file has 25 frames from the oscilloscope and I need the y and t data. The filenames are tdpo001_ch1.wfm ... tdpo150_ch1.wfm and I have no idea how to make the middle of the filename as the variable for a for loop. Thanks for the answer in advance!

 Respuesta aceptada

Guillaume
Guillaume el 11 de Feb. de 2016
Editada: Guillaume el 11 de Feb. de 2016

0 votos

Use sprintf:
for fileidx = 1:150
filename = sprintf('tdpo%03d_ch1.wfm', fileidx)
%... use filename
end
The '%03d' in format string means replace with the string representation of fileidx as integer, padding with zero to a size of 3 characters.

Más respuestas (0)

Etiquetas

Preguntada:

el 11 de Feb. de 2016

Comentada:

el 11 de Feb. de 2016

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by