Matlab help! Need a little help!

1 view (last 30 days)
Jonathan Diaz
Jonathan Diaz on 25 Apr 2017
Commented: Guillaume on 25 Apr 2017
From the image, here is my code. I'm having a little trouble creating a text file. I want the 'count' to return the number of characters successfully read but it returns '0' I don't know why... I want my text to be 'My name is Jonathan Diaz' Please help!

Answers (2)

Steven Lord
Steven Lord on 25 Apr 2017
"To read and write to the same file:
  • Open the file with a value for permission that includes a plus sign, '+'.
  • Call fseek or frewind between read and write operations. For example, do not call fread followed by fwrite, or fwrite followed by fread, unless you call fseek or frewind between them."
You probably also don't want to use fread here. The fread and fwrite functions are intended for binary data, while fprintf and fscanf are intended for text data.

AstroGuy1984
AstroGuy1984 on 25 Apr 2017
Edited: AstroGuy1984 on 25 Apr 2017
Your first invocation of fread() failed because you had closed the file first, making fid invalid. You seem to have noticed this.
Your second attempt is because of the differences of reading the file versus writing it. In addition, the position of MATLAB within the file. Notice that the following won't work either:
fid = fopen('tst.txt', 'wt');
fprintf(fid, 'Hello there Jonathan');
frewind(fid);
[~, count] = fread(fid, '*char');
fclose(fid);
You REALLY don't want to read and write a file at the same time. It's asking for trouble. Yes, you can use the '+' character but unless you are absolutely sure of where you are in a file, it's going to become a nightmare quickly. Instead, you'll want to close the file and then reopen it in READ mode... then run fread().
  3 Comments
AstroGuy1984
AstroGuy1984 on 25 Apr 2017
Yes, I noticed this mistake immediately after I posted it an edited it accordingly. Thanks anyway.
Guillaume
Guillaume on 25 Apr 2017
Ok. I still disagree with your comment "You REALLY don't want to read and write a file at the same time." in general. It is a common pattern when you want to search and replace in file. However, in this case, it would indeed make more sense to close the file and reopen it in read mode.
Note that your example that does not work can be made to work simply by changing 'wt' to 'wt+'

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!