Effacer les filtres
Effacer les filtres

Why doesn't the read(Tabul​arTextData​Store variable) function return the correct number of rows set by ReadSize property?

3 vues (au cours des 30 derniers jours)
When using read(TabularTextDataStore) the function returns the correct number of lines determined by the ReadSize property, however occasionally it will return a set of data with less rows and break my script. Why does it not follow the ReadSize property every time I call the read function?

Réponse acceptée

Walter Roberson
Walter Roberson le 5 Oct 2018
"If ReadSize is a positive integer, then each call to read reads at most ReadSize rows."
There has never been any guarantee that it will read ReadSize rows if they are available. It is permitted to return fewer rows for any internal reason, including potentially switching between files in the datastore, and including potentially reaching a limit of some internal buffer.
  2 commentaires
John Nolan
John Nolan le 5 Oct 2018
Is there a way to clear the buffer periodically so that I can ensure max ReadSize rows are read?
Walter Roberson
Walter Roberson le 11 Oct 2018
"Is there a way to clear the buffer periodically so that I can ensure max ReadSize rows are read?"
No.
You can implement your own buffering routines, keeping an internal buffer and looping doing read() operations until you have accumulated the size you want, extracting that and leaving the rest in your internal buffer. Watch out for the case of end of data store where there might not be enough data to meet the target.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by