writing mfile using a mfile
6 views (last 30 days)
Show older comments
Can any one pls give an example on how to write into an mfile using a mfile i.e mscript ??
0 Comments
Answers (2)
Jan
on 4 Oct 2011
This is not complicated:
FID = fopen(fullfile(tempdir, 'MyFunction.m'));
if FID < 0, error('Cannot open file'); end
fprintf(FID, 'function out = MyFunction(in)\n');
fprintf(FID, 'disp(in);\n');
fprintf(FID, 'out = clock;\n');
fclose(FID)
But creating M-files dynamically is a critical task. Are you really sure, that this is an efficient method to solve your problem?
6 Comments
Matt Tearle
on 4 Oct 2011
With the single quote marks actually included, you mean?
fprintf(1, '''%s'' \n',a1{:});
Matt Tearle
on 4 Oct 2011
You can programmatically interact with the MATLAB Editor using the API introduced in R2011a:
2 Comments
See Also
Categories
Find more on Adding custom doc in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!