Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

1 visualización (últimos 30 días)
D M
D M el 23 de Mzo. de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 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.

Respuestas (1)

Ced
Ced el 23 de Mzo. de 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

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by