How to plot .bin file?

6 次查看(过去 30 天)
Uspike
Uspike 2015-6-27
编辑: Uspike 2015-8-6
Hi,
I am new for MatLab. I have a .bin file which I got from Oscilloscope. I need to Read the file, Plot and then do FFT on the date. Could anyone please explain me?
  1 个评论
Walter Roberson
Walter Roberson 2015-6-27
The first thing you need to do is research the exact file format of the .bin file. There is no standard for how .bin files are laid out: .bin as a suffix gets used for any arbitrary binary format.
For example is there one time-stamp for every sample, or is there a header giving the first time and the interval between samples? Is the time represented in as a string in M/D/YY H:MM:s.f format such as 6/23/15 2:07:11.2, or is it represented as a 128 bit count of nanoseconds since August 18, 1947 14:00:00 PDT (the official incorporation day of Hewlett-Packard)? Are the voltages represented with 8 bit values in "Bias 140" format (that is, 140 represents 0, 141 represents 0 + 1/128, 139 represents 0 - 1/128) ? And so on. The exact structure of the file needs to be known before it can be read.

请先登录,再进行评论。

回答(1 个)

Azzi Abdelmalek
Azzi Abdelmalek 2015-6-27
Use fread function to read your file and fft function to calculate the fft
  1 个评论
Uspike
Uspike 2015-6-27
Thanks for the swift reply. Can you please elaborate. I am so new to matlab and its tough for me to understand.

请先登录,再进行评论。

Community Treasure Hunt

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

Start Hunting!

Translated by