- the line to be appended to is the very last line of the file; and
- the line to be appended to does not end up carriage return or new line; and
- the file was not created in DOS mode ending in control-Z
Append text using fprintf
18 views (last 30 days)
Show older comments
Hi,
I'm trying to open a file and append data using fprintf.
For instance I have one line of the file
0001 1000 2000 mat1 0 10
I want to be able to append some text after the 10:
0001 1000 2000 mat1 0 10 289.6 259.6 etc..
How would I accomplish this? Do I use fprintf?
Thanks,
Mike
0 Comments
Answers (1)
Walter Roberson
on 14 Nov 2016
You can only use fprintf() to append to a line of a file in one narrow case:
In short, you can only append if the file just abruptly ends at the point that you want to append.
In this narrow case, open the file with 'a' or 'at' or 'a+' or 'at+' access mode and fprintf() will append to it.
0 Comments
See Also
Categories
Find more on File Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!