How can I import bin file?

13 ビュー (過去 30 日間)
Hamed
Hamed 2013 年 7 月 17 日
Hello I am a beginner. I have a binary file and I want to read that and save in a matrix. I tried this code:
FID=fopen('vpt.bin', 'w'); C=fread(FID); fclose(FID); But it just shows the ans=0
I don't know what is the problem?

採用された回答

Iain
Iain 2013 年 7 月 17 日
You've opened the file for write access.
fid = fopen('vpt.bin','r');
You either need to be sure that "vpt.bin" is in matlab's current directory to read it or you need to include the path, eg, fid = fopen('D:\vpt.bin','r');
  1 件のコメント
Hamed
Hamed 2013 年 7 月 17 日
thank you lain. the problem was related to 'r'. It works now.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by