Create a blank m-file by command lines

16 次查看(过去 30 天)
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

采纳的回答

Iain
Iain 2013-6-24
编辑:Adam Danz 2021-11-20
fid = fopen('D:\myfileshere\newfile.m','w'); fclose(fid);
That will in fact create a new "m" file.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Workspace Variables and MAT Files 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by