Matlab grader problem error
4 views (last 30 days)
Show older comments
Could someone tell me the mistake I'm making?
2 Comments
Answers (2)
Sameer Pujari
on 19 Jul 2021
try this
fileID = fopen('AwesomeFile.txt','w');
fprintf(fileID,'Matlab is awesome!');
fclose(fileID);
Cris LaPierre
on 19 Jul 2021
Follow the advice in the problem description - review the documentation page for fprintf. Your code is not writing anything into the file.
2 Comments
Cris LaPierre
on 19 Jul 2021
It's printing it to the screen. It is not, however, writing it to the file 'AwesomeFile.txt'.
See Also
Categories
Find more on Write C Functions Callable from MATLAB (MEX Files) 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!