Filter löschen
Filter löschen

How to read sequence of files?

2 Ansichten (letzte 30 Tage)
Nora Hora
Nora Hora am 29 Okt. 2016
Beantwortet: Image Analyst am 29 Okt. 2016
I have to import and after modification save more than 10.000 .bin files. My files name is '000000.bin' and I would like to save them with the same name like '000000.txt'. Anyone can help me? Thanks in advance!
My code which I want to use in all the files is the following:
fid = fopen('C:\Users\Dell\Documents\000000.bin', 'r');
data = fread(fid, '*int16');
result=reshape(data,4,[]);
result= result';
csvwrite('C:\Users\Dell\Documents\000000.txt',result);
fclose(fid);

Antworten (1)

Image Analyst
Image Analyst am 29 Okt. 2016

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by