Borrar filtros
Borrar filtros

Create a blank m-file by command lines

8 visualizaciones (últimos 30 días)
Horace Lai
Horace Lai el 24 de Jun. de 2013
Editada: Adam Danz el 20 de Nov. de 2021
Hi,
I am writing a GUI that needs to save strings of text into an m-file. Basically a GUi that creates scripts. How can I do that?
I found this in the help menu:
fid = fopen('exp.txt', 'w'); fprintf(fid, '%6.2f %12.8f\n', y); fclose(fid);
But that requires the text file to be created before using fopen. How do I create a new m-file that is blank?
Horace

Respuesta aceptada

Iain
Iain el 24 de Jun. de 2013
Editada: Adam Danz el 20 de Nov. de 2021
fid = fopen('D:\myfileshere\newfile.m','w'); fclose(fid);
That will in fact create a new "m" file.

Más respuestas (0)

Categorías

Más información sobre Low-Level File I/O 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