Info

This question is closed. Reopen it to edit or answer.

Importing .bin file and doing Time Domain Analysis

1 view (last 30 days)
Is it possible to import a .bin file to Matlab? How? Do I need to make any format conversion of .bin file before importing it?
  1 Comment
Walter Roberson
Walter Roberson on 10 Sep 2020
.bin is not a standard file format. .bin is an extension programmers use for any binary data that only works with their particular program. You would need details on how that particular program stores data inside the file.

Answers (1)

Ayush Gupta
Ayush Gupta on 16 Sep 2020
A bin file can be imported in MATLAB using fread function. Suppose we have a bin file named input.bin, refer to the following code:
fileID = fopen('input.bin');
A = fread(fileID)
The documentation of fread and examples on how to use it, refer here.
  2 Comments

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!