What are the disadvantages of using uppercase 'W' in fopen compared to lowercase 'w'

2 Ansichten (letzte 30 Tage)
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...?

Antworten (1)

Jan Orwat
Jan Orwat am 6 Jul. 2016
Bearbeitet: Jan Orwat am 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.
Read Loren Shure blog post and Yair Altman blog post about this topic.

Kategorien

Mehr zu Programming Utilities finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by