Filter löschen
Filter löschen

writing mfile using a mfile

2 Ansichten (letzte 30 Tage)
Rajan
Rajan am 4 Okt. 2011
Can any one pls give an example on how to write into an mfile using a mfile i.e mscript ??

Antworten (2)

Jan
Jan am 4 Okt. 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 Kommentare
Matt Tearle
Matt Tearle am 4 Okt. 2011
With the single quote marks actually included, you mean?
fprintf(1, '''%s'' \n',a1{:});
Rajan
Rajan am 4 Okt. 2011
yea Matt figured it out.thank you for the comments.

Melden Sie sich an, um zu kommentieren.


Matt Tearle
Matt Tearle am 4 Okt. 2011
  2 Kommentare
Rajan
Rajan am 4 Okt. 2011
Thank you for the answer.
I am using R2009b.
Do u have any idea of how to do it in R2009b?
Jan
Jan am 5 Okt. 2011
Editor = com.mathworks.mlservices.MLEditorServices;
methods(Editor)

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by