writing mfile using a mfile
古いコメントを表示
Can any one pls give an example on how to write into an mfile using a mfile i.e mscript ??
回答 (2 件)
Jan
2011 年 10 月 4 日
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 件のコメント
Rajan
2011 年 10 月 4 日
Walter Roberson
2011 年 10 月 4 日
fprintf(fid, '%s \n',a1{1});
Notice the {} instead of ()
Matt Tearle
2011 年 10 月 4 日
fprintf(fid, '%s \n',a1{:});
for extra vectorized bonus points :)
Rajan
2011 年 10 月 4 日
Matt Tearle
2011 年 10 月 4 日
With the single quote marks actually included, you mean?
fprintf(1, '''%s'' \n',a1{:});
Rajan
2011 年 10 月 4 日
Matt Tearle
2011 年 10 月 4 日
0 投票
You can programmatically interact with the MATLAB Editor using the API introduced in R2011a:
カテゴリ
ヘルプ センター および File Exchange で Adding custom doc についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!