What are the disadvantages of using uppercase 'W' in fopen compared to lowercase 'w'
6 views (last 30 days)
Show older comments
fidx = fopen(filename,'Wb');
I know from the help file that the uppercase 'W' has something to do with buffering of outputs but I have yet to find any differences between files generated using uppercase 'W' compared to lowercase 'w'. It is obvious that the uppercase 'W' is much quicker than the lowercase 'w'.
Are there any downsides to using uppercase 'W' in simple binary file creation...?
0 Comments
Answers (1)
Jan Orwat
on 6 Jul 2016
Edited: Jan Orwat
on 6 Jul 2016
I guess some memory is used for buffering purposes. There should not be any differences in written data. 'W' or 'A' are faster when writing small chunks of data repeatedly. When multiple read, write sequences called to the same file, buffer has to be flushed every iteration, so I guess this option may be slower in this scenario, but I have never tested it.
1 Comment
See Also
Categories
Find more on File Operations in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!