how i can write value of variable in text file

8 visualizaciones (últimos 30 días)
n
n el 3 de En. de 2014
Comentada: Muhammad Naeem el 4 de Feb. de 2021
hi every body
how i can write value of variable in text file ?
i used this commands
fid =fopen('C:\Users\TOSHIBA\res.txt' );
file = fid;
res1 = fopen(file, Write);
write(res1, test);
fclose(res1);
and it appear this error
Undefined function 'write' for input arguments of type 'char'.
Error in test2 (line 38)
write('C:\Users\TOSHIBA\res.txt', test);
so what is the problem please..

Respuesta aceptada

Walter Roberson
Walter Roberson el 3 de En. de 2014
fid =fopen('C:\Users\TOSHIBA\res.txt', 'w' );
fwrite(fid, test);
fclose(fid);
However, if "test" is numeric, use
fprintf(fid, '%g\n', test);
instead of fwrite(). This format would put one value per line.
  2 comentarios
n
n el 3 de En. de 2014
so so Thanks MR
Muhammad Naeem
Muhammad Naeem el 4 de Feb. de 2021
this "fprintf(fid, '%g\n', test);" outputs values in scientific notations 2.33472e+06 instead of 233472.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Standard File Formats en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by