Info

This question is closed. Reopen it to edit or answer.

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

1 view (last 30 days)
D M
D M on 23 Mar 2016
Closed: MATLAB Answer Bot on 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.

Answers (1)

Ced
Ced on 23 Mar 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

This question is closed.

Community Treasure Hunt

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

Start Hunting!