フィルターのクリア

appending to a file

1 回表示 (過去 30 日間)
Tor Fredrik Hove
Tor Fredrik Hove 2011 年 10 月 24 日
I first created a file:
>> fid=fopen('mongiss.lib', 'w')
fid =
9
>> matrix=[1:3; 4:6]
matrix =
1 2 3
4 5 6
>> fprintf(fid, '%d %d\n',matrix)
ans =
12
>> fclose(fid)
ans =
0
>> load mongiss.lib
>> mongiss.lib
??? Attempt to reference field of non-structure array.
>> mongiss
mongiss =
1 4
2 5
3 6
Then I tried to open it for appending without sucsess:
>> fid=fopen('mongiss.lib'. 'a')
??? fid=fopen('mongiss.lib'. 'a') | Error: Unexpected MATLAB operator.
What is wrong?

採用された回答

TAB
TAB 2011 年 10 月 24 日
fid=fopen('mongiss.lib','a')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLanguage Fundamentals についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by