Info
此问题已关闭。 请重新打开它进行编辑或回答。
How to read a data file line by line running a loop?
1 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
回答(1 个)
Ced
2016-3-23
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
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!