1)假设我使用'edit'命令只有一个未命名的文件'无标题'。 我可以使用任何命令将任何文本附加到文件'无标题'吗?
2)是否有一个命令可以在提示符号>>之后写入命令没有按回车。像
>> doit
这与printf不同。 printf('doit')执行以下操作
doit
>>
答案 0 :(得分:0)
使用函数doit()
在文件'untitled.m'中添加文本function doit()
fid = fopen('untitled.m','w'); % open file with write access
fprintf(fid,'%s','This text will appear in untitled.m'); % write some text as string (%s)
fclose(fid); % close the file (important!)