What are the disadvantages of using uppercase 'W' in fopen compared to lowercase 'w'
Afficher commentaires plus anciens
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...?
Réponses (1)
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 commentaire
Star Strider
le 6 Juil 2016
I wasn’t aware that there was any significant difference. Thank you!
+1
Catégories
En savoir plus sur Dictionaries dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!