このページの内容は最新ではありません。最新版の英語を参照するには、ここをクリックします。
frewind
ファイルの位置ポインターを開いているファイルの先頭に移動
説明
例
ファイル位置指定子のリセット
次のファイルを開き、読み取り操作を実行してから、ファイル位置指定子をファイルの先頭に戻します。
fopen
を使用してファイルを開いてから、fgetl
を使用して最初の 2 行を読み取ります。
fid = fopen('badpoem.txt'); tline1 = fgetl(fid) % read first line
tline1 = 'Oranges and lemons,'
tline2 = fgetl(fid) % read second line
tline2 = 'Pineapples and tea.'
前の 2 回の読み取り操作で、位置指定子が詩の 3
行目の先頭に移動しました。その結果、fgetl
を使用した次の読み取り操作では 3
行目が返されます。
tline3 = fgetl(fid)
tline3 = 'Orangutans and monkeys,'
ファイルの 1 行目を再度読み取るには、関数 frewind
を使用して位置指定子をリセットしてから、読み取り操作を実行します。
frewind(fid) fgetl(fid)
ans = 'Oranges and lemons,'
ファイルを閉じます。
fclose(fid);
入力引数
ヒント
ファイルがテープ デバイスにある場合に巻き戻し操作に失敗した場合、関数 frewind
は、エラー メッセージを返しません。
代替方法
frewind(fileID)
は以下と等価です。
fseek(fileID, 0, 'bof');
拡張機能
C/C++ コード生成
MATLAB® Coder™ を使用して C および C++ コードを生成します。
スレッドベースの環境
MATLAB® の backgroundPool
を使用してバックグラウンドでコードを実行するか、Parallel Computing Toolbox™ の ThreadPool
を使用してコードを高速化します。
この関数はスレッドベースの環境を完全にサポートしています。詳細については、スレッドベースの環境での MATLAB 関数の実行を参照してください。
バージョン履歴
R2006a より前に導入R2022b: スレッドベースの環境での関数の使用
この関数はスレッドベースの環境をサポートしています。
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)