Create a blank m-file by command lines

조회 수: 12 (최근 30일)
Horace Lai
Horace Lai 2013년 6월 24일
편집: Adam Danz 2021년 11월 20일
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