Creating .txt file with matlab

Hey everyone.
I have a function that analyses an image and returns numerical values about it in several variabels.
Imagine I run my code and have the following data
a1=2; a2=4; a3=0; a4=8;
now I want my code to write this values in a .txt in the following way: 2,4,0,8
I want to be capable of analysing several images in the folder and to keep all the results in the same .txt file, with all the values separated by commas.
Thanks in advance!

 Respuesta aceptada

Geoff
Geoff el 22 de Mayo de 2012

4 votos

This opens the file once (overwriting if it already exists) and writes your results one line at a time.
fid = fopen( 'results.txt', 'wt' );
for image = 1:N
[a1,a2,a3,a4] = ProcessMyImage( image );
fprintf( fid, '%f,%f,%f,%f\n', a1, a2, a3, a4);
end
fclose(fid);
Alternatively, you could open the file in 'append' mode, write the line, and close it again each time through the loop.
doc fopen

4 comentarios

David Fernández
David Fernández el 23 de Mayo de 2017
Movida: Image Analyst el 29 de Jul. de 2025
Thanks! Simple, usefull.
Charles Miller
Charles Miller el 6 de Feb. de 2019
Okay, but how do you CREATE the file to output to?
Carlos José
Carlos José el 13 de Mzo. de 2019
This code already creates one txt file...
you can see it better using this code (try it on your matlab):
b = [65 66 67 68 69];
criptografia = char(b);
fid = fopen('output.txt','wb');
fwrite(fid, criptografia, 'char');
fclose(fid);
Huy Le Van
Huy Le Van el 30 de Nov. de 2021
Hi.
how do you write file .txt ? in here we have those space .

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Entering Commands en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 22 de Mayo de 2012

Movida:

el 29 de Jul. de 2025

Community Treasure Hunt

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

Start Hunting!

Translated by