Writting to a .tx file

I am creating a high score table for a game. I created a .txt file that has a name in the first column and a two digit score in the second column.
I am trying to make it so a user can input their name and their score onto the file.
So far I have... fid = fopen('HighScoreTable.txt', 'w');
data = textscan(fid, '%s %d');
close = fclose(fid);
names = data{1}
scores = data{2}
But it is giving me this error message ..
Error using textscan Unable to read any data from the file, textscan may not have read access.
Error in Table (line 5) data = textscan(fid, '%s %d');

回答 (1 件)

per isakson
per isakson 2013 年 4 月 22 日

0 投票

Writing or reading?
Try
fid = fopen('HighScoreTable.txt', 'r' );
with an "r" for reading. textscan does only reading.

カテゴリ

ヘルプ センター および File ExchangeData Import and Export についてさらに検索

質問済み:

2013 年 4 月 22 日

Community Treasure Hunt

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

Start Hunting!

Translated by