fopen problem using updated software

1 回表示 (過去 30 日間)
Kan Yao
Kan Yao 2017 年 6 月 27 日
回答済み: Jan 2017 年 6 月 27 日
I use fopen(fid,"w") in matlab 2015b in windows, the function works well. But as I switch to matlab 2017a in mac, student use.
I have the following error:
First Input must be a file name or a file identifier.
I am wondering what's wrong?
Thanks.
b
  2 件のコメント
Walter Roberson
Walter Roberson 2017 年 6 月 27 日
Please show more of your code including how you construct the variable "fid"
Note: it is quite common that the variable fid is used for a numeric file identifier returned from fopen(), rather than for the file name.
Question: are you reading the file name from a file using importdata() ?
Stephen23
Stephen23 2017 年 6 月 27 日
@Kan Yao: please explain to us what fid is, or how it is created.

サインインしてコメントする。

回答 (1 件)

Jan
Jan 2017 年 6 月 27 日
As the documentation and the error message explains, the standard calling is:
fid = fopen(FileName, 'w')
Here fid is a numerical file identifier and FileName is the string containing the name of the file.

カテゴリ

Help Center および File ExchangeLarge Files and Big Data についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by