Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How to read a data file line by line running a loop?

1 Ansicht (letzte 30 Tage)
D M
D M am 23 Mär. 2016
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Suppose I've a data file matrix.txt which has 1292 rows and 2 columns. I define the first column elements as x and the last as y. I need to do x*y for each line and then sum it to the x*y value obtained in the next line. So basically I need to run a loop where line-wise x,y will be read, x*y will be calculated and then in the next loop x*y will be summed up and finally summed x*y after 1292 iterations, will be displayed. How to do that? Kindly help.

Antworten (1)

Ced
Ced am 23 Mär. 2016
I don't think you should read it line by line. Just read the whole thing, and process it line by line. 1300 rows are peanuts, memory or speed should not be an issue.
Looking at your actual process though, I would process the whole matrix at once. Maybe I misunderstood your calculations, but I don't see a reason for a loop (except for the cumulative sum in the end).
Probably fastest:
1. Read whole file
2. Compute x.*y for whole matrix
3. cumsum over results

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by