Write to a .txt file

1 view (last 30 days)
Lauren Smith
Lauren Smith on 7 Mar 2017
Commented: Walter Roberson on 8 Mar 2017
Hello, I have to write a code that will do what the following question asks. I am very confused on how to do this.
'You will want to add up all of the vectors in the file called "Random_Data.txt", but in addition, you want to save all of the intermediate results. For example, once you add up the first two vectors, write the results into another text file called "Results.txt". The next line should have the intermediate answer of adding the previous result to the third vector, etc... Your Results.txt should contain vector_count - 1 vectors with the final vector being the final answer for adding all of the vectors up in the Random_Data.txt file.
Example:
Original File:
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
Results.txt
2 2 2 2 2
3 3 3 3 3
4 4 4 4 4
any help is much appreciated!
  2 Comments
Jan
Jan on 7 Mar 2017
What is your question?
John BG
John BG on 7 Mar 2017
first steps learning encryption?

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 7 Mar 2017
The quick way is to use cumsum() and write out the 2nd row to the end row.
  2 Comments
Dewey Phillips
Dewey Phillips on 8 Mar 2017
Edited: Walter Roberson on 8 Mar 2017
i tried this code and it did not work.
B = cumsum(my_ans)
C = B([2:end],:)
fprintf(fileID, '%d/t%d/t%d/t%d/t%d/n', C')
Walter Roberson
Walter Roberson on 8 Mar 2017
\t and \n not /t and /n

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!