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

5 visualizaciones (últimos 30 días)
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...?

Respuestas (1)

Jan Orwat
Jan Orwat el 6 de Jul. de 2016
Editada: Jan Orwat el 6 de Jul. de 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.

Categorías

Más información sobre Programming Utilities en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by