Easy textscan question. What is this input?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Andrew Reibold
il 17 Lug 2014
Commentato: Andrew Reibold
il 5 Ago 2014
I have inherited a script with many textscan functions like the one below
textscan(fid, '%*s %*s %f\n\r',1,'HeaderLines',19)
So this skips 19 lines, then reads and ignores two strings and then finds the next number and returns it and ignores the rest of the line, right?
But what does the '1' do? Does that serve any purpose? Is that how many times to repeat the operation? That seems pointless if the number is one, and I have many of these with '1's...
2 Commenti
Sara
il 17 Lug 2014
Yes, 1 is the number of times it repeats the ignore 2 strings, read number instruction
Risposta accettata
Sara
il 17 Lug 2014
Yes, 1 is the number of times it repeats the ignore 2 strings, read number instruction. You can use fgetl to read one line at a time, but with textscan you can read something that's a mix of strings and numbers and extract only what you care about.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Import and Export in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!